2007-04-05 16:48:42 +05:30
|
|
|
#!/sbin/runscript
|
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Check filesystems according to /etc/fstab for errors and \
|
|
|
|
optionally repair them."
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
depend() {
|
|
|
|
need checkroot
|
|
|
|
after modules
|
|
|
|
}
|
|
|
|
|
|
|
|
do_checkfs() {
|
2007-04-26 18:37:57 +05:30
|
|
|
local retval=0 mode="-p" opts= parts=
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
ebegin "Checking all filesystems"
|
2007-04-26 18:37:57 +05:30
|
|
|
|
|
|
|
|
|
|
|
if [ -e /forcefsck ] || get_bootparam "forcefsck" ; then
|
|
|
|
ewarn "A full fsck has been forced"
|
2007-05-02 18:37:00 +05:30
|
|
|
mode="-f -n"
|
2007-04-26 18:37:57 +05:30
|
|
|
fi
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
if [ "${RC_UNAME}" = "Linux" ] ; then
|
2007-04-26 18:37:57 +05:30
|
|
|
opts="-A -C0 -R -T"
|
2007-04-05 16:48:42 +05:30
|
|
|
else
|
2007-04-26 18:37:57 +05:30
|
|
|
parts="$(fstabinfo --passno ">1")"
|
|
|
|
[ -z "${parts}" ] && return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2007-04-26 18:37:57 +05:30
|
|
|
|
|
|
|
fsck ${opts} ${mode} ${parts}
|
|
|
|
retval=$?
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
if [ ${retval} -eq 0 ] ; then
|
|
|
|
eend 0
|
|
|
|
elif [ ${retval} -eq 1 ] ; then
|
|
|
|
ewend 1 "Filesystem errors corrected."
|
|
|
|
retval=0
|
|
|
|
elif [ ${retval} -eq 2 ] ; then
|
|
|
|
ewend 1 "System should be rebooted"
|
|
|
|
elif [ ${retval} -eq 8 ] ; then
|
|
|
|
ewend 1 "Operational error, continuing"
|
|
|
|
retval=0
|
|
|
|
else
|
|
|
|
if [ "${RC_FORCE_AUTO}" = "yes" ] ; then
|
|
|
|
eend 2 "Fsck could not correct all errors, rerunning"
|
2007-04-26 18:37:57 +05:30
|
|
|
fsck ${opts} -y ${parts}
|
2007-04-05 16:48:42 +05:30
|
|
|
retval=$?
|
2007-04-26 18:37:57 +05:30
|
|
|
eend ${retval}
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ${retval} -gt 3 ] ; then
|
|
|
|
eend 2 "Fsck could not correct all errors, manual repair needed"
|
2007-04-20 18:52:27 +05:30
|
|
|
exec rc-abort || exit 1
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
fi
|
2007-04-26 18:37:57 +05:30
|
|
|
|
|
|
|
[ ${retval} = 0 -a -e /forcefsck ] && rm /forcefsck
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
return ${retval}
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
do_checkfs
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
# fsck on shutdown if we need to
|
|
|
|
[ "${FSCK_SHUTDOWN}" = "yes" -a ! -f /forcefsck ] && do_checkfs
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: set ts=4 :
|