freebsd-dev/release/extract.sh

33 lines
856 B
Bash
Raw Normal View History

#!/bin/sh
# $Id: extract.sh,v 1.11 1994/11/17 11:53:12 jkh Exp $
PATH=/stand:$PATH
1994-11-10 02:24:47 +00:00
DDIR=/
if [ -f bin_tgz.aa ] ; then
# Temporary kludge for pathological bindist.
if [ -f $DDIR/etc/myname ]; then
cp $DDIR/etc/hosts $DDIR/etc/myname $DDIR/stand/etc
fi
echo; echo "Extracting bindist, please wait."
cat bin_tgz.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
if [ -f $DDIR/stand/etc/myname ]; then
# Add back what the bindist nuked.
cp $DDIR/stand/etc/myname $DDIR/etc
cat $DDIR/stand/etc/hosts >> $DDIR/etc/hosts
fi
1994-11-06 23:47:06 +00:00
fi
1994-11-10 02:24:47 +00:00
for i in *.aa
do
b=`basename $i .aa`
if [ "$b" != bin_tgz ] ; then
1994-11-10 03:22:27 +00:00
if [ "$b" = des_tgz ] ; then
# We cannot replace /sbin/init while it runs
# so move it out of the way for now
mv /sbin/init /sbin/nondes_init
fi
echo "Extracting $b"
cat $b.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu )
1994-11-10 02:24:47 +00:00
fi
done