diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-03-26 01:40:22 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-03-26 01:40:22 +0000 |
commit | 86c5b3d23ad5624d076e7a6d9da894c3b53c27df (patch) | |
tree | 94fbce08a2d5c2c13b1549b3bd98165de9399253 /distrib/miniroot/install.sh | |
parent | a0eb9fad0f2d097383ec67c1e84fb3858c58c0d2 (diff) |
Start some delayed cleanup and shrinkage. Today: ': ;' -> ':;' in
while statements.
Diffstat (limited to 'distrib/miniroot/install.sh')
-rw-r--r-- | distrib/miniroot/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/miniroot/install.sh b/distrib/miniroot/install.sh index 9fa8931ce42..5b92fe5f5c3 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sh,v 1.149 2004/11/06 18:05:48 deraadt Exp $ +# $OpenBSD: install.sh,v 1.150 2005/03/26 01:40:21 krw Exp $ # $NetBSD: install.sh,v 1.5.2.8 1996/08/27 18:15:05 gwr Exp $ # # Copyright (c) 1997-2004 Todd Miller, Theo de Raadt, Ken Westerback @@ -85,7 +85,7 @@ if [ ! -f /etc/fstab ]; then DISK= _DKDEVS=$DKDEVS - while : ; do + while :; do _DKDEVS=`rmel "$DISK" $_DKDEVS` # Always do ROOTDISK first, and repeat until @@ -162,7 +162,7 @@ if [ ! -f /etc/fstab ]; then # Now prompt the user for the mount points. _i=0 - while : ; do + while :; do _pp=${_partitions[$_i]} _ps=$(( ${_psizes[$_i]} / 2 )) _mp=${_mount_points[$_i]} |