diff options
Diffstat (limited to 'app-admin/ulogd/files/ulogd-0.98')
-rw-r--r-- | app-admin/ulogd/files/ulogd-0.98 | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/app-admin/ulogd/files/ulogd-0.98 b/app-admin/ulogd/files/ulogd-0.98 deleted file mode 100644 index 383fb8ccfbbc..000000000000 --- a/app-admin/ulogd/files/ulogd-0.98 +++ /dev/null @@ -1,44 +0,0 @@ -#!/sbin/runscript -# -# chkconfig: - 91 35 -# description: Starts and stops the ulogd daemon -# -# config: /etc/ulogd.conf - -extra_started_commands="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" - killall -HUP ulogd - eend $? -} |