summaryrefslogtreecommitdiffstats
path: root/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh
diff options
context:
space:
mode:
authorDirk2011-11-25 18:31:00 +0100
committerDirk2011-11-25 18:31:00 +0100
commit4feeb6f314797d14e8a47a30f9c8234ccffbddd5 (patch)
tree8e8f718cb2cf6299e9ac0ea69a2390df0476dd17 /src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh
parentSystemd stuff for SuSE 12.1 ... (diff)
parentplymouth: only start when debuglevel = 0 (diff)
downloadcore-4feeb6f314797d14e8a47a30f9c8234ccffbddd5.tar.gz
core-4feeb6f314797d14e8a47a30f9c8234ccffbddd5.tar.xz
core-4feeb6f314797d14e8a47a30f9c8234ccffbddd5.zip
Merge branch 'master' of openslx.org:openslx/core
Diffstat (limited to 'src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh')
-rw-r--r--src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh b/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh
index 97094a07..19c26862 100644
--- a/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh
+++ b/src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh
@@ -1,4 +1,4 @@
-plymouthd && plymouth show-splash
-
-echo "Plymouth init hook successfully called!" >> /tmp/plymouth.log
-echo "Plymouth init hook successfully called!"
+# only start with no debug level
+if [ $DEBUGLEVEL -eq 0 ]; then
+ plymouthd && plymouth show-splash
+fi