diff options
author | Bill Nottingham <notting@redhat.com> | 2008-07-28 23:10:22 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-07-28 23:10:22 -0400 |
commit | 327cfaeab96ffbec4145648de16d58346d4b3f9a (patch) | |
tree | 82d6d22618521029f6dd7839b0a441dbaec661d4 /rc.d/init.d | |
parent | 2ad81727bd98d4c8364dfdc7f65d105972c93e1c (diff) | |
download | initscripts-327cfaeab96ffbec4145648de16d58346d4b3f9a.tar initscripts-327cfaeab96ffbec4145648de16d58346d4b3f9a.tar.gz initscripts-327cfaeab96ffbec4145648de16d58346d4b3f9a.tar.bz2 initscripts-327cfaeab96ffbec4145648de16d58346d4b3f9a.tar.xz initscripts-327cfaeab96ffbec4145648de16d58346d4b3f9a.zip |
Properly hide the plymouth splash if needed.
Also, remove some old rhgb code.
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/functions | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 09f47f37..058599f0 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -511,22 +511,10 @@ action() { STRING=$1 echo -n "$STRING " - if [ "${RHGB_STARTED:-}" != "" -a -w /etc/rhgb/temp/rhgb-console ]; then - echo -n "$STRING " > /etc/rhgb/temp/rhgb-console - fi shift "$@" && success $"$STRING" || failure $"$STRING" rc=$? echo - if [ "${RHGB_STARTED:-}" != "" -a -w /etc/rhgb/temp/rhgb-console ]; then - if [ "$rc" = "0" ]; then - echo_success > /etc/rhgb/temp/rhgb-console - else - echo_failure > /etc/rhgb/temp/rhgb-console - [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --details=yes - fi - echo > /etc/rhgb/temp/rhgb-console - fi return $rc } |