From 909cd75949f3aa25629d602ca21bbd711b94bb6c Mon Sep 17 00:00:00 2001 From: jkh Date: Thu, 11 May 1995 05:23:40 +0000 Subject: DES -> des. Sigh! --- release/scripts/extract_des.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 release/scripts/extract_des.sh (limited to 'release/scripts') diff --git a/release/scripts/extract_des.sh b/release/scripts/extract_des.sh new file mode 100644 index 0000000..3eed9d7 --- /dev/null +++ b/release/scripts/extract_des.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# $Id: extract_des.sh,v 1.1 1995/05/09 22:58:42 jkh Exp $ +set -e +PATH=/stand:$PATH +DDIR=/ + +DIST=des +# You can't write over the running init +if [ -f /sbin/init ]; then mv /sbin/init /sbin/init.insecure; fi + +cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) + +DDIR=/usr/src +for DIST in sebones sdes ; do + if [ -f ${DIST}.aa ]; then + echo "Extracting ${DIST} sources" + cat ${DIST}.?? | gzip -c -d | ( cd $DDIR; cpio -H tar -imdu ) + fi +done -- cgit v1.1