summaryrefslogtreecommitdiffstats
path: root/init.d/syslog
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/syslog')
-rwxr-xr-xinit.d/syslog15
1 files changed, 0 insertions, 15 deletions
diff --git a/init.d/syslog b/init.d/syslog
deleted file mode 100755
index c44e43b..0000000
--- a/init.d/syslog
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/sbin/runscript
-
-start() {
- ebegin "Starting system logging"
- klogd ${KLOGD_OPTS}
- syslogd ${SYSLOGD_OPTS}
- eend $?
-}
-
-stop () {
- ebegin "Stopping system logging"
- killall klogd 2>/dev/null
- killall syslogd
- eend $?
-}