[Initng-svn] r3201 - initng/trunk/initfiles/system
svn at initng.thinktux.net
svn at initng.thinktux.net
Sun Mar 5 12:18:07 CET 2006
Author: trigger
Date: Sun Mar 5 12:18:06 2006
New Revision: 3201
Modified:
initng/trunk/initfiles/system/checkfs.ii
Log:
interpretate backslash escapes
Modified: initng/trunk/initfiles/system/checkfs.ii
==============================================================================
--- initng/trunk/initfiles/system/checkfs.ii (original)
+++ initng/trunk/initfiles/system/checkfs.ii Sun Mar 5 12:18:06 2006
@@ -9,12 +9,12 @@
script start = {
#ifd debian
handle_failed_fsck() {
- echo "File system check failed.\nA log is being saved in ${FSCK_LOGFILE} if that location is writable.\ Please repair the file system manually."
- echo "A maintenance shell will now be started.\nCONTROL-D will terminate this shell and resume system boot."
+ echo -e "File system check failed.\nA log is being saved in ${FSCK_LOGFILE} if that location is writable.\ Please repair the file system manually."
+ echo -e "A maintenance shell will now be started.\nCONTROL-D will terminate this shell and resume system boot."
# Start a single user shell on the console
if ! sulogin $CONSOLE
then
- echo "Attempt to start maintenance shell failed. \nContinuing with system boot in 5 seconds."
+ echo -e "Attempt to start maintenance shell failed. \nContinuing with system boot in 5 seconds."
sleep 5
fi
}
@@ -68,8 +68,6 @@
then
echo 1 "code $FSCKCODE"
handle_failed_fsck
- else
- log_action_end_msg 0
fi
else
if [ "$FSCKTYPES" ]
@@ -84,7 +82,7 @@
then
handle_failed_fsck
else
- echo "Done checking file systems.\nA log is being saved in ${FSCK_LOGFILE} if that location is writable."
+ echo -e "Done checking file systems.\nA log is being saved in ${FSCK_LOGFILE} if that location is writable."
fi
fi
fi
More information about the Initng-svn
mailing list