diff options
author | Robert Peichaer <rpe@cvs.openbsd.org> | 2014-02-04 00:47:28 +0000 |
---|---|---|
committer | Robert Peichaer <rpe@cvs.openbsd.org> | 2014-02-04 00:47:28 +0000 |
commit | 316dc77f7c6d624f1c728964b0e05938e2fdeae6 (patch) | |
tree | c5ec33116c818fc2fc4596ccda7da4a096626c1c /distrib | |
parent | 527d38fb20a85e323190078224719d94b7560edc (diff) |
simplify removal of fstab leftovers in /tmp
OK halex@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 17d89838f1c..c2e50547950 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sh,v 1.241 2014/02/02 09:32:00 rpe Exp $ +# $OpenBSD: install.sh,v 1.242 2014/02/04 00:47:27 rpe Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback @@ -69,7 +69,7 @@ _DKDEVS=$(get_dkdevs) _fsent= # Remove traces of previous install attempt. -rm -f /tmp/fstab.shadow /tmp/fstab /tmp/fstab.* +rm -f /tmp/fstab* ask_yn "Use DUIDs rather than device names in fstab?" yes [[ $resp == y ]] && FSTABFLAG=-F |