blob: a1128bcfca50e8f23daa94f5ffa1a11f365a5e55 (
plain)
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
44
45
46
47
48
49
50
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: inspircd
# REQUIRE: DAEMON
# BEFORE: LOGIN mysql postgresql
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable inspircd:
#
# inspircd_enable="YES"
#
# Other rc.conf variables:
# inspircd_flags="<set as needed>"
#
# inspircd_config="%%ETCDIR%%/inspircd.conf"
# -- path to config file
# inspircd_pidfile="%%INSPIRCD_RUNDIR%%/inspircd.pid"
# -- location of pidfile: must match setting
# in ${inspircd_conffile}
# inspircd_logfile="%%INSPIRCD_LOGDIR%%/inspircd.log"
# -- file inspircd writes logs to
#
. /etc/rc.subr
name=inspircd
rcvar=inspircd_enable
load_rc_config ${name}
: ${inspircd_enable:=NO}
: ${inspircd_config="%%ETCDIR%%/inspircd.conf"}
: ${inspircd_pidfile="%%INSPIRCD_RUNDIR%%/inspircd.pid"}
: ${inspircd_user="%%INSPIRCD_USER%%"}
: ${inspircd_group="%%INSPIRCD_GROUP%%"}
: ${inspircd_data="%%INSPIRCD_DBDIR%%"}
: ${inspircd_logfile="%%INSPIRCD_LOGDIR%%/inspircd.log"}
: ${inspircd_chdir="%%ETCDIR%%"}
command=/usr/sbin/daemon
command_args="-S -p ${inspircd_pidfile} %%PREFIX%%/bin/inspircd --nofork --config ${inspircd_config} ${inspircd_flags}"
procname=%%PREFIX%%/bin/inspircd
pidfile=${inspircd_pidfile}
required_files=${inspircd_config}
configtest_cmd=inspircd_configtest
extra_commands="reload status"
run_rc_command "$1"
|