blob: a50f331ad0401cc5e9639ed6d12d86ce29ac9034 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/sh
#
# PROVIDE: fabio
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# fabio_enable (bool): Set to NO by default.
# Set it to YES to enable fabio.
# fabio_user (user): Set user to run fabio.
# Default is "nobody".
# fabio_group (group): Set group to run fabio.
# Default is "nobody".
. /etc/rc.subr
name=fabio
rcvar=fabio_enable
load_rc_config $name
: ${fabio_enable:="NO"}
: ${fabio_user:="nobody"}
: ${fabio_group:="nobody"}
pidfile=/var/run/fabio.pid
procname="%%PREFIX%%/sbin/fabio"
command="/usr/sbin/daemon"
command_args="-f -p ${pidfile} ${procname} -cfg %%PREFIX%%/etc/fabio.properties"
start_precmd=fabio_startprecmd
fabio_startprecmd()
{
if [ ! -e ${pidfile} ]; then
install -o ${fabio_user} -g ${fabio_group} /dev/null ${pidfile};
fi
}
run_rc_command "$1"
|