summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/syslog/XX_syslog.sh
diff options
context:
space:
mode:
authorDirk von Suchodoletz2008-08-06 11:06:13 +0200
committerDirk von Suchodoletz2008-08-06 11:06:13 +0200
commit8cc05b240567b8d796abd16cc1d43c81aa28f818 (patch)
tree23b2f4a3912c2b55b8976197a15f0ca26f89788a /os-plugins/plugins/syslog/XX_syslog.sh
parentTrivial fixes/bugs in plugin scripts ... (diff)
downloadcore-8cc05b240567b8d796abd16cc1d43c81aa28f818.tar.gz
core-8cc05b240567b8d796abd16cc1d43c81aa28f818.tar.xz
core-8cc05b240567b8d796abd16cc1d43c81aa28f818.zip
Further cleanup in the plugin files ...
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@1967 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'os-plugins/plugins/syslog/XX_syslog.sh')
-rw-r--r--os-plugins/plugins/syslog/XX_syslog.sh25
1 files changed, 19 insertions, 6 deletions
diff --git a/os-plugins/plugins/syslog/XX_syslog.sh b/os-plugins/plugins/syslog/XX_syslog.sh
index ccd27bbf..1a33bf4f 100644
--- a/os-plugins/plugins/syslog/XX_syslog.sh
+++ b/os-plugins/plugins/syslog/XX_syslog.sh
@@ -1,18 +1,31 @@
-#! /bin/ash
+# Copyright (c) 2007..2008 - RZ Uni Freiburg
+# Copyright (c) 2008 - OpenSLX GmbH
+#
+# This program/file is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
+#
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your feedback to feedback@openslx.org
+#
+# General information about OpenSLX can be found at http://openslx.org
#
# stage3 part of 'syslog' plugin - the runlevel script
#
-. /etc/functions
-. /etc/distro-functions
-. /etc/sysconfig/config
+# script is included from init via the "." load function - thus it has all
+# variables and functions available
+
+# check if the plugin config directory is generally available or if the client
+# configuration failed somehow
+[ -d /initramfs/plugin-conf ] && error "${init_picfg}" nonfatal
+
if [ -e /initramfs/plugin-conf/syslog.conf ]; then
. /initramfs/plugin-conf/syslog.conf
if [ $syslog_active -ne 0 ]; then
- [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'syslog' os-plugin ...";
+ [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'syslog' os-plugin ..."
. /mnt/opt/openslx/plugin-repo/syslog/syslog.sh
- [ $DEBUGLEVEL -gt 0 ] && echo "done with 'syslog' os-plugin ...";
+ [ $DEBUGLEVEL -gt 0 ] && echo "done with 'syslog' os-plugin ..."
fi
fi