Make some of the extract scripts more explicit.

This commit is contained in:
Jordan K. Hubbard 1995-01-28 09:11:39 +00:00
parent ae547a3309
commit 1bdc047602
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5988
3 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: extract_bin.sh,v 1.1 1995/01/14 07:41:39 jkh Exp $
# $Id: extract_bin.sh,v 1.2 1995/01/28 09:04:09 jkh Exp $
PATH=/stand:$PATH
DDIR=/
@ -10,7 +10,6 @@ fi
if [ -f $DDIR/etc/defaultrouter ]; then
cp $DDIR/etc/defaultrouter $DDIR/stand/etc
fi
echo; echo "Extracting bindist, please wait."
cat bin.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
if [ -f $DDIR/stand/etc/myname ]; then
# Add back what the bindist nuked.

View File

@ -1,8 +1,8 @@
#!/bin/sh
# $Id: extract.sh,v 1.17 1994/12/04 03:41:18 jkh Exp $
# $Id: extract_proflibs.sh,v 1.1 1995/01/14 07:41:44 jkh Exp $
PATH=/stand:$PATH
DDIR=/
DIST=proflibs
echo "Extracting ${DIST}"
echo "Extracting ${DIST} - ignore any errors from cpio"
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $Id: extract_secure.sh,v 1.2 1995/01/14 07:44:23 jkh Exp $
# $Id: extract_secure.sh,v 1.3 1995/01/27 07:49:45 jkh Exp $
PATH=/stand:$PATH
DDIR=/
@ -7,7 +7,6 @@ DIST=secure
# You can't write over the running init
if [ -f /sbin/init ]; then mv /sbin/init /sbin/init.insecure; fi
echo "Extracting ${DIST}"
cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
for DIST in ebones secrsrc; do