blob: 7ef0ca64ca42aae832d7cb085e1823832f2ddf97 (
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
|
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
depend() {
need net
}
pidfile=/var/run/iplog.pid
start() {
ebegin "Starting iplog"
checkconfig
rc=$?
if [ $rc -eq 0 ]; then
start-stop-daemon --start --quiet --startas /usr/sbin/iplog \
--pidfile=${pidfile} --name=iplog
rc=$?
eend $rc "Failed to start iplog $rc"
else
eend $rc "/etc/iplog.conf does not exist!"
fi
}
stop() {
ebegin "Stopping iplog"
start-stop-daemon --stop --retry=5 --quiet --pidfile=${pidfile} --name=iplog
# due to a bug in the program, it doesn't properly remove it's pidfile sometimes
rm -f ${pidfile}
eend $? "Failed to stop iplog!"
}
checkconfig() {
[ -f /etc/iplog.conf ] || return 1
return 0
}
|