blob: a8a1b6c60b35239f0f11651bf487dbabb33d0169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/bin/sh
# Begin /etc/init.d/checkfs
### BEGIN INIT INFO
# Provides: checkfs
# Required-Start: udev swap $time
# Should-Start:
# Required-Stop:
# Should-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Checks local filesystems before mounting.
# Description: Checks local filesystmes before mounting.
# X-LFS-Provided-By: LFS
### END INIT INFO
. /lib/lsb/init-functions
case "${1}" in
start)
if [ -f /fastboot ]; then
echo "${INFO}/fastboot found!"
log_success_msg "Will not perform file system checks as requested."
exit 0
fi
mount -n -o remount,ro / >/dev/null
if [ ${?} != 0 ]
then
log_failure_msg "Mounting root file system in read-only mode"
echo -e "${FAILURE}FAILURE:\n"
echo -e -n "${FAILURE}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
if [ -f /forcefsck ]
then
echo "${INFO}/forcefsck found!"
log_success_msg "${INFO}Forcing file system checks as requested."
options="-f"
else
options=""
fi
# Note: -a option used to be -p; but this fails e.g.
# on fsck.minix
fsck ${options} -a -A -C -T
error_value=${?}
if [ "${error_value}" = 0 ]
then
log_success_msg "Checking file systems..."
elif [ "${error_value}" = 1 ]
then
log_warning_msg "Checking file systems..."
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 -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 -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 -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
;;
*)
echo "Usage: ${0} {start}"
exit 1
;;
esac
# End /etc/init.d/checkfs
|