summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJonathan Bauer2011-11-25 16:24:22 +0100
committerJonathan Bauer2011-11-25 16:24:22 +0100
commitde5d8d6440c395403200883aaa458265bda3210d (patch)
tree771d395c372a98ef0f11ab6e5dfdf70ac091fdab /src
parentplymouth plugin: dots centered (diff)
downloadcore-de5d8d6440c395403200883aaa458265bda3210d.tar.gz
core-de5d8d6440c395403200883aaa458265bda3210d.tar.xz
core-de5d8d6440c395403200883aaa458265bda3210d.zip
plymouth: only start when debuglevel = 0
Diffstat (limited to 'src')
-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