diff options
Diffstat (limited to 'init-sh')
-rwxr-xr-x | init-sh/level4.sh | 2 | ||||
-rwxr-xr-x | init-sh/level5.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/init-sh/level4.sh b/init-sh/level4.sh index e07c4c7..9e8fa1e 100755 --- a/init-sh/level4.sh +++ b/init-sh/level4.sh @@ -94,7 +94,7 @@ echo " } : " for service in `chkconfig --list | awk '{print $1}'`; do chkconfig --del "${service}" if ! chkconfig --msec --add "${service}"; then - echo -e "\t- Services ${service} is now disabled." + echo -e "\t- Services ${service} scheduled to be disabled at next boot." fi done echo -e "done.\n"; diff --git a/init-sh/level5.sh b/init-sh/level5.sh index fb577bb..c1509a1 100755 --- a/init-sh/level5.sh +++ b/init-sh/level5.sh @@ -89,7 +89,7 @@ echo " } : " for service in `chkconfig --list | awk '{print $1}'`; do chkconfig --del "${service}" if ! chkconfig --msec --add "${service}"; then - echo -e "\t- Services ${service} is now disabled." + echo -e "\t- Services ${service} scheduled to be disabled at next boot." fi done echo -e "done.\n"; |