summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh
diff options
context:
space:
mode:
authorOliver Tappe2008-03-24 16:42:47 +0100
committerOliver Tappe2008-03-24 16:42:47 +0100
commit7c25c7600d56ab930a9a7a111bab53f98eabc9df (patch)
tree6a850e3b15eb14b770c6d19aac7be34d1bf4fd89 /os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh
parentLoad configuration within the vmware runlevel script ... (diff)
downloadcore-7c25c7600d56ab930a9a7a111bab53f98eabc9df.tar.gz
core-7c25c7600d56ab930a9a7a111bab53f98eabc9df.tar.xz
core-7c25c7600d56ab930a9a7a111bab53f98eabc9df.zip
* removed 'precedence'-attribute and made it part of the general plugin info -
it makes no sense to have this configurable by the user git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1682 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh')
-rw-r--r--os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh b/os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh
index a1a07e8a..8c6218cc 100644
--- a/os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh
+++ b/os-plugins/plugins/syslog/init-hooks/15-have-ip-config/syslog.sh
@@ -1,7 +1,7 @@
-if [ -e /initramfs/plugin-conf/bootlog.conf ]; then
- . /initramfs/plugin-conf/bootlog.conf
- if [ $bootlog_active -ne 0 ]; then
- echo "syslogd -R $bootlog_target..."
- syslogd -R $bootlog_target & >/dev/null 2>&1
+if [ -e /initramfs/plugin-conf/syslog.conf ]; then
+ . /initramfs/plugin-conf/syslog.conf
+ if [ $syslog_active -ne 0 ]; then
+ echo "syslogd -R $syslog_target..."
+ syslogd -R $syslog_target & >/dev/null 2>&1
fi
fi