summaryrefslogtreecommitdiff
blob: 010829371852109413b79281432b787ec0ab6039 (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
#!/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="start stop restart status"

depend() {
	need net
}

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
}