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/rc.sysinit | |
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/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index c572384a..fd907f4a 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -32,7 +32,7 @@ fi . /etc/init.d/functions PLYMOUTH= -[ -x /usr/bin/plymouth ] && PLYMOUTH=yes +[ -x /bin/plymouth ] && PLYMOUTH=yes # Check SELinux status SELINUX_STATE= @@ -545,8 +545,8 @@ fi # Configure machine if necessary. if [ -f /.unconfigured ]; then - if [ -x /usr/bin/plymouth ]; then - /usr/bin/plymouth quit + if [ -x /bin/plymouth ]; then + /bin/plymouth quit fi if [ -x /usr/bin/system-config-keyboard ]; then @@ -660,7 +660,7 @@ if strstr "$cmdline" confirm ; then fi # Let rhgb know that we're leaving rc.sysinit -if [ -x /usr/bin/plymouth ]; then - /usr/bin/plymouth --sysinit +if [ -x /bin/plymouth ]; then + /bin/plymouth --sysinit fi |