aboutsummaryrefslogtreecommitdiffstats
path: root/bootscripts/contrib/lsb-v3/init.d/checkfs
diff options
context:
space:
mode:
authorDJ Lucas <dj@linuxfromscratch.org>2009-03-25 06:35:58 +0000
committerDJ Lucas <dj@linuxfromscratch.org>2009-03-25 06:35:58 +0000
commit6f69b5c249ba4a931d4637d5dafc30415feaa9c0 (patch)
treebc8542090983bd0ddf5748f20eff0f9c6301094e /bootscripts/contrib/lsb-v3/init.d/checkfs
parent9da9f24fff871797cd19401122ee440adf72ee73 (diff)
Corrected several 'echo -e' lines in cleanfs and checkfs.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8849 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts/contrib/lsb-v3/init.d/checkfs')
-rw-r--r--bootscripts/contrib/lsb-v3/init.d/checkfs58
1 files changed, 29 insertions, 29 deletions
diff --git a/bootscripts/contrib/lsb-v3/init.d/checkfs b/bootscripts/contrib/lsb-v3/init.d/checkfs
index a7f125708..821dd2b2c 100644
--- a/bootscripts/contrib/lsb-v3/init.d/checkfs
+++ b/bootscripts/contrib/lsb-v3/init.d/checkfs
@@ -30,13 +30,13 @@ case "${1}" in
if [ ${?} != 0 ]
then
log_failure_msg "Mounting root file system in read-only mode"
- echo "${FAILURE}FAILURE:\n"
- echo -n "${FIALURE}Cannot check root filesystem because it "
- echo "${FAILURE}could not be mounted"
- echo "${FAILURE}in read-only mode.\n\n"
- echo -n "${FAILURE}After you press Enter, this system will be "
- echo "${FAILURE}halted and powered off.\n"
- echo "${INFO}Press enter to continue...${NORMAL}"
+ echo -e "${FAILURE}FAILURE:\n"
+ echo -e -n "${FIALURE}Cannot check root filesystem because it "
+ echo -e "${FAILURE}could not be mounted"
+ echo -e "${FAILURE}in read-only mode.\n\n"
+ echo -e -n "${FAILURE}After you press Enter, this system will be "
+ echo -e "${FAILURE}halted and powered off.\n"
+ echo -e "${INFO}Press enter to continue...${NORMAL}"
read ENTER
/etc/rc.d/init.d/halt stop
fi
@@ -61,38 +61,38 @@ case "${1}" in
elif [ "${error_value}" = 1 ]
then
log_warning_msg "Checking file systems..."
- echo "${WARNING}WARNING:\n"
- echo "${WARNING}File system errors were found and have been"
- echo "${WARNING}corrected. You may want to double-check that"
- echo "${WARNING}everything was fixed properly.${NORMAL}"
+ echo -e "${WARNING}WARNING:\n"
+ echo -e "${WARNING}File system errors were found and have been"
+ echo -e "${WARNING}corrected. You may want to double-check that"
+ echo -e "${WARNING}everything was fixed properly.${NORMAL}"
elif [ "${error_value}" = 2 -o "${error_value}" = 3 ]; then
log_warning_msg "Checking file systems..."
- echo "${WARNING}WARNING:\n"
- echo "${WARNING}File system errors were found and have been been"
- echo "${WARNING}corrected, but the nature of the errors require"
- echo "${WARNING}this system to be rebooted.\n"
- echo "After you press enter, this system will be rebooted.\n"
- echo "${INFO}Press Enter to continue...${NORMAL}"
+ echo -e "${WARNING}WARNING:\n"
+ echo -e "${WARNING}File system errors were found and have been been"
+ echo -e "${WARNING}corrected, but the nature of the errors require"
+ echo -e "${WARNING}this system to be rebooted.\n"
+ echo -e "After you press enter, this system will be rebooted.\n"
+ echo -e "${INFO}Press Enter to continue...${NORMAL}"
read ENTER
reboot -f
elif [ "${error_value}" -gt 3 -a "${error_value}" -lt 16 ]; then
log_failure_msg "Checking file systems..."
- echo "${FAILURE}FAILURE:\n"
- echo "${FAILURE}File system errors were encountered that could"
- echo "${FAILURE}not be fixed automatically. This system cannot"
- echo "${FAILURE}continue to boot and will therefore be halted"
- echo "${FAILURE}until those errors are fixed manually by a"
- echo "${FAILURE}System Administrator.\n"
- echo "${FAILURE}After you press Enter, this system will be"
- echo "${FAILURE}halted and powered off.\n"
- echo "${INFO}Press Enter to continue...${NORMAL}"
+ echo -e "${FAILURE}FAILURE:\n"
+ echo -e "${FAILURE}File system errors were encountered that could"
+ echo -e "${FAILURE}not be fixed automatically. This system cannot"
+ echo -e "${FAILURE}continue to boot and will therefore be halted"
+ echo -e "${FAILURE}until those errors are fixed manually by a"
+ echo -e "${FAILURE}System Administrator.\n"
+ echo -e "${FAILURE}After you press Enter, this system will be"
+ echo -e "${FAILURE}halted and powered off.\n"
+ echo -e "${INFO}Press Enter to continue...${NORMAL}"
read ENTER
/etc/rc.d/init.d/halt stop
elif [ "${error_value}" -ge 16 ]; then
log_failure_msg "Checking file systems..."
- echo "${FAILURE}FAILURE:\n"
- echo "${FAILURE}Unexpected Failure running fsck. Exited with error"
- echo "${FAILURE}code: ${error_value}.${NORMAL}"
+ echo -e "${FAILURE}FAILURE:\n"
+ echo -e "${FAILURE}Unexpected Failure running fsck. Exited with error"
+ echo -e "${FAILURE}code: ${error_value}.${NORMAL}"
exit ${error_value}
fi
;;