diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-10-19 19:58:55 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-10-19 19:58:55 +0000 |
commit | cb844f9aa85746789830d555bd6cf464c52ddb00 (patch) | |
tree | 883d4b41679017f10259bebdca0a988c324a0d0d /etc | |
parent | da7778d34f18d1a38ad44903eea673470935e696 (diff) | |
download | FreeBSD-src-cb844f9aa85746789830d555bd6cf464c52ddb00.zip FreeBSD-src-cb844f9aa85746789830d555bd6cf464c52ddb00.tar.gz |
Make darn sure that fsck does not try to fsck dos file systems by setting
the fsck pass to 0, same thing for dump field, in the fstab that is
created by this script.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/etc.i386/inst1.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install index 367a5e6..cd6626b 100755 --- a/etc/etc.i386/inst1.install +++ b/etc/etc.i386/inst1.install @@ -936,7 +936,7 @@ if [ "$hname" != "" ]; then if [ ! "$have_dos_part" ]; then echo "/dev/${drivename}h /$hname ufs rw 1 5" >>etc/fstab else - echo "/dev/${drivename}h /$hname pcfs rw" >>etc/fstab + echo "/dev/${drivename}h /$hname pcfs rw 0 0" >>etc/fstab fi fi |