blob: 831c9ce2321b06354d0e4a9bcb0ce5a5e30f760e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
# PROVIDE: croc
# REQUIRE: DAEMON
# KEYWORD: shutdown
# Add the following lines to /etc/rc.conf to enable croc relaying:
#
# croc_enable (bool): Set to NO by default.
# Set it to YES to enable croc relaying.
# croc_ports (string): List of comma-separated ports to be used.
# Service requires at least *two* ports.
# Default is "9009,9010,9011,9012,9013"
. /etc/rc.subr
name=croc
rcvar=croc_enable
load_rc_config $name
: ${croc_enable:="NO"}
: ${croc_ports="9009,9010,9011,9012,9013"}
pidfile="/var/run/${name}.pid"
procname="%%PREFIX%%/bin/croc"
command="/usr/sbin/daemon"
command_args="-f -t ${name} -T ${name} -p ${pidfile} /usr/bin/env ${croc_env} ${procname} relay --ports \"${croc_ports}\""
run_rc_command "$1"
|