diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-10-10 08:42:30 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-10-10 08:42:30 +0000 |
commit | 61a9687a979303e04569205500dda32a04217a25 (patch) | |
tree | 3fe05bb30355e882e0c16d595c022ef3cbeafdbb /distrib/miniroot | |
parent | bc761cf969e32ac906a569a7e93ce8c99179bdd1 (diff) |
non-verbose tar extract for cd install too
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 10627ce0501..e880b6f5cd5 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: install.sub,v 1.101 1998/09/30 08:02:26 deraadt Exp $ +# $OpenBSD: install.sub,v 1.102 1998/10/10 08:42:29 deraadt Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997,1998 Todd Miller, Theo de Raadt @@ -1325,7 +1325,7 @@ while test -n "${_get_files}" ; do if [ "X${_f}" = "X${_kernel}" ]; then ftp -V -m -o /mnt/$_f file:$1/$_f else - ftp -V -m -o - file:$1/$_f | (cd /mnt; tar -zxvpf -) + ftp -V -m -o - file:$1/$_f | (cd /mnt; tar -zxpf -) fi if [ $? -ne 0 ]; then # Mark xfer as having failed,. |