diff options
author | Bill Nottingham <notting@redhat.com> | 2011-08-15 16:23:38 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2011-08-15 16:23:38 -0400 |
commit | 19ea300575c00132cf576ae0f8ef99f0c78f20d1 (patch) | |
tree | 3bba07388ef8b256ec3c704622cd7ce7b99590cf /rc.d/init.d/functions | |
parent | 4ee50f81e1f2f78af3298439ab8a9d9d96aa4d18 (diff) | |
download | initscripts-19ea300575c00132cf576ae0f8ef99f0c78f20d1.tar initscripts-19ea300575c00132cf576ae0f8ef99f0c78f20d1.tar.gz initscripts-19ea300575c00132cf576ae0f8ef99f0c78f20d1.tar.bz2 initscripts-19ea300575c00132cf576ae0f8ef99f0c78f20d1.tar.xz initscripts-19ea300575c00132cf576ae0f8ef99f0c78f20d1.zip |
plymouth lives in /bin. (#702814)
Diffstat (limited to 'rc.d/init.d/functions')
-rw-r--r-- | rc.d/init.d/functions | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 1b0b4843..79545b51 100644 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -546,8 +546,8 @@ echo_warning() { # Inform the graphical boot of our current state update_boot_stage() { - if [ -x /usr/bin/plymouth ]; then - /usr/bin/plymouth --update="$1" + if [ -x /bin/plymouth ]; then + /bin/plymouth --update="$1" fi return 0 } @@ -562,7 +562,7 @@ success() { failure() { local rc=$? [ "$BOOTUP" != "verbose" -a -z "${LSB:-}" ] && echo_failure - [ -x /usr/bin/plymouth ] && /usr/bin/plymouth --details + [ -x /bin/plymouth ] && /bin/plymouth --details return $rc } @@ -601,7 +601,7 @@ strstr() { # Confirm whether we really want to run this service confirm() { - [ -x /usr/bin/plymouth ] && /usr/bin/plymouth --hide-splash + [ -x /bin/plymouth ] && /bin/plymouth --hide-splash while : ; do echo -n $"Start service $1 (Y)es/(N)o/(C)ontinue? [Y] " read answer @@ -609,7 +609,7 @@ confirm() { return 0 elif strstr $"cC" "$answer" ; then rm -f /var/run/confirm - [ -x /usr/bin/plymouth ] && /usr/bin/plymouth --show-splash + [ -x /bin/plymouth ] && /bin/plymouth --show-splash return 2 elif strstr $"nN" "$answer" ; then return 1 |