diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-03-26 20:13:25 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-03-26 20:13:25 +0000 |
commit | 68bb6380285f97641ac34162f4f6bd532de03924 (patch) | |
tree | 75be0fc998c6f6af17c41f95e5e8d5ed1454a26d /distrib | |
parent | 5d4c30ae5a05b7ec2fd2defb96d9fa9f8976c354 (diff) |
Make the default behaviour to force a fsck when upgrading, as it
was before it became optional. ok krw@ beck@ pedro@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 9940161fd21..68d7b34c7a1 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.414 2007/03/26 12:09:13 krw Exp $ +# $OpenBSD: install.sub,v 1.415 2007/03/26 20:13:24 otto Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2007 Todd Miller, Theo de Raadt, Ken Westerback @@ -1439,7 +1439,7 @@ __EOT check_fs() { local _dev _mp _fstype _rest _fail _f - ask_yn "Force checking of non-root filesystems?" + ask_yn "Force checking of non-root filesystems?" yes [[ $resp == y ]] && _f=f while read _dev _mp _fstype _rest; do |