2007-04-05 16:48:42 +05:30
|
|
|
#!/sbin/runscript
|
2008-01-11 17:15:59 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples
|
2007-11-14 20:52:04 +05:30
|
|
|
# All rights reserved
|
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Check the root filesystem according to /etc/fstab for errors \
|
|
|
|
and optionally repair them."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-12-05 23:18:07 +05:30
|
|
|
keywords notimeout
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
do_mtab()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
# Don't create mtab if /etc is readonly
|
2008-01-07 05:28:12 +05:30
|
|
|
if ! echo 2>/dev/null >/etc/mtab; then
|
2007-12-14 19:42:38 +05:30
|
|
|
ewarn "Skipping /etc/mtab initialization (ro root)"
|
2007-04-05 16:48:42 +05:30
|
|
|
return 0
|
|
|
|
fi
|
2007-10-11 20:34:07 +05:30
|
|
|
ebegin "Updating /etc/mtab"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-10-29 19:23:21 +05:30
|
|
|
# With / as tmpfs we cannot umount -at tmpfs in localmount as that
|
|
|
|
# makes / readonly and dismounts all tmpfs even if in use which is
|
|
|
|
# not good. Luckily, umount uses /etc/mtab instead of /proc/mounts
|
|
|
|
# which allows this hack to work.
|
2007-10-29 19:28:40 +05:30
|
|
|
grep -v "^[^ ]* / tmpfs " /proc/mounts > /etc/mtab
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Remove stale backups
|
|
|
|
rm -f /etc/mtab~ /etc/mtab~~
|
2007-10-11 20:34:07 +05:30
|
|
|
eend 0
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
root_rw()
|
|
|
|
{
|
2007-10-10 02:40:53 +05:30
|
|
|
echo 2>/dev/null >/.test.$$ || return 1
|
|
|
|
rm -f /.test.$$
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
do_fsck()
|
|
|
|
{
|
2007-10-11 15:19:54 +05:30
|
|
|
local retval=0 opts= root=
|
2007-07-26 02:28:23 +05:30
|
|
|
case "${RC_UNAME}" in
|
|
|
|
FreeBSD) opts="-F";;
|
|
|
|
Linux) opts="-T -C0";;
|
|
|
|
esac
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# Don't bother doing a fsck on these
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ -n "${CDBOOT}" ] || is_net_fs / || is_union_fs /; then
|
2007-04-05 16:48:42 +05:30
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2007-10-10 02:40:53 +05:30
|
|
|
if root_rw; then
|
2007-04-05 16:48:42 +05:30
|
|
|
einfo "root filesystem is mounted read-write - skipping"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2007-10-11 15:19:54 +05:30
|
|
|
root=$(fstabinfo --blockdevice /)
|
|
|
|
[ ! -e "${root}" -a -e /dev/root ] && root=/dev/root
|
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
# Obey the fs_passno setting for / (see fstab(5))
|
|
|
|
local pass=$(fstabinfo --passno /)
|
|
|
|
if [ ${pass:-0} != "0" ]; then
|
|
|
|
ebegin "Checking root filesystem"
|
|
|
|
fsck ${opts} -p "${root}"
|
2007-04-05 16:48:42 +05:30
|
|
|
retval=$?
|
|
|
|
else
|
2007-12-14 19:42:38 +05:30
|
|
|
ebegin "Skipping root filesystem check (fstab's passno == 0)"
|
|
|
|
retval=0
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
|
|
|
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ ${retval} -eq 0 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
eend 0
|
2007-11-28 21:15:03 +05:30
|
|
|
elif [ ${retval} -eq 1 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
ewend 1 "Filesystem repaired"
|
|
|
|
retval=0
|
2007-11-28 21:15:03 +05:30
|
|
|
elif [ ${retval} -eq 8 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
ewend 1 $"Operational error, continuing"
|
|
|
|
retval=0
|
2007-11-28 21:15:03 +05:30
|
|
|
elif [ ${retval} -eq 2 -o ${retval} -eq 3 ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
ewend 1 "Filesystem repaired, but reboot needed!"
|
2007-11-23 17:34:11 +05:30
|
|
|
if ! yesno ${rc_force_auto:-${RC_FORCE_AUTO}}; then
|
2007-04-05 16:48:42 +05:30
|
|
|
printf "\a"; sleep 1; printf "\a"; sleep 1
|
|
|
|
printf "\a"; sleep 1; printf "\a"; sleep 1
|
|
|
|
ewarn "Rebooting in 10 seconds ..."
|
|
|
|
sleep 10
|
|
|
|
fi
|
|
|
|
einfo "Rebooting"
|
2007-04-26 18:37:57 +05:30
|
|
|
reboot -f
|
2007-04-05 16:48:42 +05:30
|
|
|
else
|
2007-11-23 17:34:11 +05:30
|
|
|
if yesno ${rc_force_auto:-${RC_FORCE_AUTO}}; then
|
2007-04-05 16:48:42 +05:30
|
|
|
eend 2 "Rerunning fsck in force mode"
|
2007-10-11 15:19:54 +05:30
|
|
|
fsck ${opts} -y "${root}"
|
2007-04-05 16:48:42 +05:30
|
|
|
retval=$?
|
|
|
|
else
|
|
|
|
eend 2 "Filesystem couldn't be fixed :("
|
2007-04-20 18:52:27 +05:30
|
|
|
exec rc-abort || exit 1
|
2007-04-05 16:48:42 +05:30
|
|
|
fi
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ ${retval} != "0" ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
einfo "Unmounting filesystems"
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ "${RC_UNAME}" = "Linux" ]; then
|
2007-04-05 16:48:42 +05:30
|
|
|
mount -a -o remount,ro /
|
|
|
|
else
|
|
|
|
mount -u -o ro /
|
|
|
|
fi
|
|
|
|
einfo "Rebooting"
|
|
|
|
reboot -f
|
|
|
|
fi
|
|
|
|
fi
|
2007-05-30 16:56:53 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-05-30 16:56:53 +05:30
|
|
|
do_fsck || return 1
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-10-10 02:40:53 +05:30
|
|
|
if ! root_rw; then
|
|
|
|
ebegin "Remounting root filesystem read/write"
|
2007-11-28 21:15:03 +05:30
|
|
|
if [ "${RC_UNAME}" = "Linux" ]; then
|
2007-10-10 02:40:53 +05:30
|
|
|
mount -n -o remount,rw /
|
|
|
|
else
|
|
|
|
mount -u -o rw /
|
|
|
|
fi
|
2007-10-11 20:34:07 +05:30
|
|
|
eend $? "Root filesystem could not be mounted read/write" || return $?
|
2007-10-10 02:40:53 +05:30
|
|
|
fi
|
|
|
|
|
2007-04-05 16:48:42 +05:30
|
|
|
# Only Linux has mtab
|
2007-10-11 20:44:55 +05:30
|
|
|
[ "${RC_UNAME}" = "Linux" -a -e /proc/mounts ] && do_mtab
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
# We got here, so return 0
|
|
|
|
return 0
|
|
|
|
}
|