diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-04-16 19:43:29 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-04-16 19:43:29 +0000 |
commit | 68f97fb61dc6a0f29f2a47e4a9818dc5016595f5 (patch) | |
tree | 767aed6ba03103cf6e32025e85b71c952aff65e5 /distrib/miniroot/install.sh | |
parent | 55b46601a8d0c344bbd02c8d2095359a286d8965 (diff) |
Fix a couple of nits: delete some unnecessary commas and
only print a 'Done.' for fsck'ing if fsck'ing is actually
attempted.
ok deraadt@
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 1a5a6bc578e..01b9082e041 100644 --- a/distrib/miniroot/install.sh +++ b/distrib/miniroot/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sh,v 1.75 2001/03/26 14:46:55 todd Exp $ +# $OpenBSD: install.sh,v 1.76 2001/04/16 19:43:27 krw 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 @@ -406,12 +406,12 @@ cd /tmp echo -n "Copying " for file in fstab hostname.* hosts myname mygate resolv.conf; do if [ -f $file ]; then - echo -n "$file, " + echo -n "$file " cp $file /mnt/etc/$file rm -f $file fi done -echo " ...done." +echo "...done." if [ -f /etc/dhclient.conf ]; then echo -n "Modifying dhclient.conf..." |