summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh
diff options
context:
space:
mode:
authorSebastian Schmelzer2010-09-02 17:50:49 +0200
committerSebastian Schmelzer2010-09-02 17:50:49 +0200
commit416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5 (patch)
tree4715f7d742fec50931017f38fe6ff0a89d4ceccc /os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh
parentFix for the problem reported on the list (sed filter forgotten for the (diff)
downloadcore-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.tar.gz
core-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.tar.xz
core-416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5.zip
change dir structure
Diffstat (limited to 'os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh')
-rw-r--r--os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh b/os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh
deleted file mode 100644
index 08076c34..00000000
--- a/os-plugins/plugins/syslog/init-hooks/95-cleanup/syslog.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-if [ -e /initramfs/plugin-conf/syslog.conf ]; then
- . /initramfs/plugin-conf/syslog.conf
- if [ $syslog_active -ne 0 ] && [ -n "$syslog_host" ]; then
- # kill syslogd, as it is going to be replaced by system's syslog soon
- killall syslogd
- # remove links to boot.klog, as that will hang (I suppose that is
- # because we already emptied /dev/kmsg)
- if [ -e /mnt/etc/init.d/boot.klog ]; then
- rm /mnt/etc/init.d/boot.d/*.klog
- fi
- fi
-fi