diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-11-17 11:53:14 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-11-17 11:53:14 +0000 |
commit | 8f00e74801a812bfd9ee7a373591483ef0fbd134 (patch) | |
tree | 9a7311ccacdb0b50e0a4eabd45553518b43fa05a /release/netinst.sh | |
parent | 4857d86d340a83c57029245d88c1ba688470cd4f (diff) |
Eliminate the use of cpio in extraction. The stupid thing whines too much,
and it doesn't support --unlink. I think it's time to nuke cpio completely
out of the installation process, unless someone can think of a really good
reason to keep it (and don't say multiple volume extraction since we a) don't
use it anywhere anyway, and b) tar supports that too, now).
Notes
Notes:
svn path=/head/; revision=4551
Diffstat (limited to 'release/netinst.sh')
-rw-r--r-- | release/netinst.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release/netinst.sh b/release/netinst.sh index 417293a1c81c..3afc72a5f788 100644 --- a/release/netinst.sh +++ b/release/netinst.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: bininst,v 1.38 1994/11/15 13:40:00 jkh Exp $ +# $Id: netinst.sh,v 1.1 1994/11/16 07:51:45 jkh Exp $ if [ "$_NETINST_SH_LOADED_" = "yes" ]; then return 0 @@ -63,7 +63,7 @@ network_setup_slip() serial_speed=$answer clear="--clear" - if dialog $clear --title "Dial" --yesno "Do you need to dial the phone or otherwise talk to the modem?"; then + if dialog $clear --title "Dial" --yesno "Do you need to dial the phone or otherwise talk to the modem?" -1 -1; then mkdir -p /var/log touch -f /var/log/aculog > /dev/null 2>&1 chmod 666 /var/log/aculog > /dev/null 2>&1 |