diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-02 00:57:26 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-02 00:57:26 +0000 |
commit | e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c (patch) | |
tree | 519a94d0646687a868681da20d91e311c54f023f /rc.d/init.d | |
parent | acd1b3af175819b9209cde675deb4a88af32e506 (diff) | |
download | initscripts-e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c.tar initscripts-e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c.tar.gz initscripts-e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c.tar.bz2 initscripts-e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c.tar.xz initscripts-e6d28cc5aaeabd53ed652eec63c2c22bb3f7e97c.zip |
add interactive prompt to make Cristian & Preston happy
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/functions | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index eca7f56f..54e3a556 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -230,6 +230,7 @@ echo_success() { echo -n "OK" [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL echo -n " ]" + echo -ne "\r" return 0 } @@ -240,6 +241,7 @@ echo_failure() { echo -n "FAILED" [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL echo -n "]" + echo -ne "\r" return 1 } @@ -250,6 +252,7 @@ echo_passed() { echo -n "PASSED" [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL echo -n "]" + echo -ne "\r" return 1 } |