blob: a2663e29936298cf727f8d27eea6560438ac7713 (
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
|
#!/bin/sh
#
# PROVIDE: twms
# REQUIRE: DAEMON NETWORKING LOGIN
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf to enable twms:
# twms_enable="YES"
. /etc/rc.subr
name=twms
rcvar=twms_enable
twms_enable=${twms_enable:-"NO"}
twms_user=%%USER%%
twms_group=%%GROUP%%
start_cmd="${name}_start"
stop_cmd="${name}_stop"
pidfile="/var/run/${name}.pid"
command="%%PREFIX%%/bin/twms"
load_rc_config $name
twms_start()
{
su -m ${twms_user} -c "nohup $command >/dev/null 2>&1 & echo \$! " | tail -1 > ${pidfile}
}
twms_stop()
{
if [ -f ${pidfile} ]; then
rc_pid=`cat ${pidfile}`
kill -TERM $rc_pid
wait_for_pids $rc_pid
rm ${pidfile}
fi
}
run_rc_command "$1"
|