diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-10 04:09:24 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-04-10 04:09:24 +0000 |
commit | 87ea4b1d043156bf2f7a4a44e97cc93ae69fcbbd (patch) | |
tree | 4acd5c94618c7119a54c69dce9ccae8eba102ce7 /distrib | |
parent | 56f7ca9e7a51c799568a2ba0910deaad82635ead (diff) |
Add -q flag to newfs and use it in the install
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 00da467e47b..0d22002289b 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.51 1999/04/08 06:16:15 deraadt Exp $ +# $OpenBSD: install.sh,v 1.52 1999/04/10 04:09:22 millert Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -296,7 +296,7 @@ __get_filesystems_1 echo "Creating filesystems..." ( while read _device_name _junk; do - newfs /dev/r${_device_name} + newfs -q /dev/r${_device_name} done ) < ${FILESYSTEMS} else |