blob: 3360a75fa3ee216aaf404202d1bb3e989c6a78c6 (
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
|
#!/sbin/runscript
#
# chkconfig: - 91 35
# description: Starts and stops the ulogd daemon
#
# pidfile: /var/lock/samba/ulogd.pid
# config: /usr/local/etc/ulogd.conf
opts="${opts} reload"
depend() {
need net
use mysql
}
initService() {
# Avoid using root's TMPDIR
unset TMPDIR
# Check that ulogd.conf exists.
[ -f /etc/ulogd.conf ] || exit 0
RETVAL=0
}
start() {
initService
ebegin "Starting ulogd"
start-stop-daemon --start --quiet --exec /usr/sbin/ulogd -- -d >/dev/null 2>&1
eend $?
}
stop() {
initService
ebegin "Stopping ulogd"
start-stop-daemon --stop --quiet --exec /usr/sbin/ulogd >/dev/null 2>&1
eend $?
}
reload() {
initService
ebegin "Reloading ulogd.conf file"
killproc ulogd -HUP
RETVAL=$?
echo
return $RETVAL
}
|