From 3d1419ac14251c8720915eab32b22e86920ceb22 Mon Sep 17 00:00:00 2001 From: halex Date: Thu, 5 Aug 2010 10:45:32 +0000 Subject: [PATCH] Return the old behaviour of exiting if a mount fails rather than ignoring it ok krw@ --- distrib/miniroot/install.sub | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index dc8793696f3..adc5dc42d16 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.614 2010/08/02 11:21:35 krw Exp $ +# $OpenBSD: install.sub,v 1.615 2010/08/05 10:45:32 halex Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -1602,7 +1602,7 @@ mount_fs() { _msg=$(mount -v -t $_fstype $_async -o $_opt $_dev $_mp) _err=$? echo $_msg | sed -e 's/, ctime=[^,)]*//' - if ! $_e ; then + if [ $_err != 0 ]; then # In addition to the error message displayed by mount ... cat <<__EOT -- 2.20.1