blob: 65da8360b6eec2b9265c1ce82be23f811005f5ae (
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
44
45
46
47
|
#! /bin/sh
#
# $FreeBSD$
#
# PROVIDE: neubotd
# REQUIRE: NETWORKING DAEMON
# KEYWORD: shutdown
# Add the following line to /etc/rc.conf to enable `neubotd':
#
# neubotd_enable="YES"
#
. /etc/rc.subr
name="neubotd"
rcvar=neubotd_enable
# read settings, set default values
load_rc_config "${name}"
: ${neubotd_enable="NO"}
required_files="%%PREFIX%%/bin/neubot"
pidfile="/var/run/${name}.pid"
long_name="neubot daemon."
neubotd_log="/var/log/${name}.log"
start_cmd=${name}_start
stop_cmd=${name}_stop
neubotd_start() {
[ -x %%PYTHON_CMD%% ] || (echo "%%PYTHON_CMD%% not found"; exit 1)
[ -f $pidfile ] && (echo "$name already running?"; exit 2)
echo "Starting $long_name"
%%PYTHON_CMD%% %%PREFIX%%/bin/neubot start > $neubotd_log && \
echo $$ > $pidfile
}
neubotd_stop() {
[ -f $pidfile ] || (echo "$name not running?"; exit 1)
echo "Stopping $long_name"
%%PYTHON_CMD%% %%PREFIX%%/bin/neubot stop > $neubotd_log && \
rm -f $pidfile
}
run_rc_command "$1"
|