aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d/functions
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2008-07-28 23:10:22 -0400
committerBill Nottingham <notting@redhat.com>2008-07-28 23:10:22 -0400
commit327cfaeab96ffbec4145648de16d58346d4b3f9a (patch)
tree82d6d22618521029f6dd7839b0a441dbaec661d4 /rc.d/init.d/functions
parent2ad81727bd98d4c8364dfdc7f65d105972c93e1c (diff)
downloadinitscripts-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/functions')
-rwxr-xr-xrc.d/init.d/functions12
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
}