mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-13 05:41:26 +01:00
DES -> des. Sigh!
This commit is contained in:
parent
8f9c995787
commit
46374ebcaa
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8437
19
release/scripts/extract_des.sh
Normal file
19
release/scripts/extract_des.sh
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user