diff options
author | Judd Vinet <judd@archlinux.org> | 2004-02-19 18:50:09 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2004-02-19 18:50:09 +0000 |
commit | d4a5c5ef402ca7315e5429eaccb0748e38b964af (patch) | |
tree | 9b7be5f03c8749b4d1ff6e3d52317c609dd5bb51 /rc.single | |
parent | 45ede7cf9dd872c580e9c2a57a00b0350f035371 (diff) |
added cleanups by Leif Askeland
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -41,13 +41,8 @@ if [ "$PREVLEVEL" != "N" ]; then fi if [ "$RUNLEVEL" = "1" ]; then - if [ "$USECOLOR" = "YES" -o "$USECOLOR" = "yes" ]; then - echo -e "\033[1;32m|\033[1;0m" - echo -e "\033[1;31m| \033[1;33mEntering single-user mode...\033[1;0m" - else - echo "|" - echo "| Entering single-user mode..." - fi + printsep + printhl "Entering single-user mode..." exec /sbin/init -t1 S fi |