* Don't try to run fsck on ISO-9660/UDF filesystems.

svn path=/nixos/branches/modular-nixos/; revision=15963
This commit is contained in:
Eelco Dolstra 2009-06-15 15:50:36 +00:00
parent ff58b5dede
commit 048e03377f
2 changed files with 8 additions and 1 deletions

View file

@ -10,6 +10,8 @@ let
in
{
inherit config;
system = config.system.build.system;
# The following are used by nixos-rebuild.

View file

@ -141,13 +141,18 @@ checkFS() {
# Only check block devices.
if ! test -b "$device"; then return 0; fi
eval $(fstype "$device")
# Don't check ROM filesystems.
if test "$FSTYPE" = iso9660 -o "$FSTYPE" = udf; then return 0; fi
# Don't run `fsck' if the machine is on battery power. !!! Is
# this a good idea?
if ! onACPower; then
echo "on battery power, so no \`fsck' will be performed on \`$device'"
return 0
fi
FSTAB_FILE="/etc/mtab" fsck -V -v -C -a "$device"
fsckResult=$?