blob: 3d1c43d70888e69fac9c0a2d0b2ef3ca34f2a8e7 (
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
|
#!/sbin/runscript
NAME="grossd"
DAEMON="/usr/sbin/$NAME"
DAEMON_USER="gross"
DAEMON_GROUP="gross"
depend() {
need net
}
check_config() {
if [ ! -f /var/db/gross/state ] ; then
einfo "Generating Gross database..."
install -dD -o${DAEMON_USER} -g${DAEMON_GROUP} /var/db/gross
${DAEMON} -Cu ${DAEMON_USER} > /dev/null
fi
}
start() {
check_config || return 1
ebegin "Starting ${NAME}"
start-stop-daemon --start --quiet \
--exec ${DAEMON} -- \
-p /var/run/gross/grossd.pid \
-u ${DAEMON_USER} ${OPTS}
eend $?
}
stop() {
ebegin "Stopping ${NAME}"
start-stop-daemon --stop --pidfile /var/run/gross/grossd.pid
eend $?
}
|