summaryrefslogtreecommitdiff
path: root/distrib/atari
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-16 14:20:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-16 14:20:12 +0000
commit63033551c5381c29e9871f0fc7880cc24e73d4e7 (patch)
treefc8bc312592b532ad9abb3380680d7a52efc3cb4 /distrib/atari
parentecdda4e71f3b2f7cae5f01f6e81c39d899187c57 (diff)
update from netbsd
Diffstat (limited to 'distrib/atari')
-rw-r--r--distrib/atari/inst-common/dot.commonutils16
1 files changed, 12 insertions, 4 deletions
diff --git a/distrib/atari/inst-common/dot.commonutils b/distrib/atari/inst-common/dot.commonutils
index 52edee385dc..09588224842 100644
--- a/distrib/atari/inst-common/dot.commonutils
+++ b/distrib/atari/inst-common/dot.commonutils
@@ -1,5 +1,5 @@
#
-# $NetBSD: dot.commonutils,v 1.2 1995/05/28 10:50:13 leo Exp $
+# $NetBSD: dot.commonutils,v 1.2.2.1 1995/11/15 22:01:35 leo Exp $
#
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
@@ -34,11 +34,17 @@
# the hard disk. These are meant to be invoked from the shell prompt,
# by people installing NetBSD.
+# we know that /etc/fstab is only generated on the hard drive
+dest_dir=/
+if [ ! -f /etc/fstab ]; then
+ dest_dir=/mnt/
+fi
+
Set_tmp_dir()
{
def_tmp_dir=`pwd`
if [ "$def_tmp_dir" = "/" -o "$def_tmp_dir" = "/mnt" ]; then
- def_tmp_dir=/mnt/usr/distrib
+ def_tmp_dir="$dest_dir"usr/distrib
fi
echo -n "What directory should be used to find and/or store "
@@ -122,8 +128,10 @@ Extract()
esac
if [ $snapshot = n ]
then
- cat "$1".??? | gunzip | (cd / ; tar xfp$tarverbose -)
+ cat "$1".??? | gunzip |
+ (cd $dest_dir ; tar --unlink -xp"$tarverbose"f -)
else
- cat "$1".tar.gz | gunzip | (cd /mnt ; tar xfp$tarverbose -)
+ cat "$1".tar.gz | gunzip |
+ (cd $dest_dir ; tar --unlink -xp"$tarverbose"f -)
fi
}