diff options
author | Jonathan Bauer | 2011-11-25 16:24:22 +0100 |
---|---|---|
committer | Jonathan Bauer | 2011-11-25 16:24:22 +0100 |
commit | de5d8d6440c395403200883aaa458265bda3210d (patch) | |
tree | 771d395c372a98ef0f11ab6e5dfdf70ac091fdab | |
parent | plymouth plugin: dots centered (diff) | |
download | core-de5d8d6440c395403200883aaa458265bda3210d.tar.gz core-de5d8d6440c395403200883aaa458265bda3210d.tar.xz core-de5d8d6440c395403200883aaa458265bda3210d.zip |
plymouth: only start when debuglevel = 0
-rw-r--r-- | src/os-plugins/plugins/plymouth/init-hooks/40-started-hw-config/plymouth.sh | 8 |
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 |