1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00

Use utils from /rescue vs. /stand. Also use pax rather than cpio & gzip.

This commit is contained in:
David E. O'Brien 2004-12-12 08:04:26 +00:00
parent a2eafa5bcd
commit 32e7342827
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=138729
2 changed files with 2 additions and 2 deletions

View File

@ -305,7 +305,7 @@ for i in ${templates} ; do
if [ -f $j ]; then
create_md $subdir
echo "Loading /$subdir from cpio archive $j"
(cd / ; /stand/gzip -d < $j | /stand/cpio --extract -d )
(cd / ; /rescue/pax -x cpio -r -z -p e -f $j)
fi
done
for j in /conf/$i/*.remove ; do

View File

@ -305,7 +305,7 @@ for i in ${templates} ; do
if [ -f $j ]; then
create_md $subdir
echo "Loading /$subdir from cpio archive $j"
(cd / ; /stand/gzip -d < $j | /stand/cpio --extract -d )
(cd / ; /rescue/pax -x cpio -r -z -p e -f $j)
fi
done
for j in /conf/$i/*.remove ; do