Adapt to the crypto distribution.

This commit is contained in:
Jordan K. Hubbard 2000-03-21 19:13:31 +00:00
parent 8abb3721a5
commit 1158a8cd3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58443

View File

@ -9,13 +9,15 @@ echo "You are about to extract the CRYPTO distribution into ${_DEST} - are you S
echo "you want to do this over your installed system? If not, hit ^C now,"
echo -n "otherwise hit return to continue. "
read junk
cat des.?? | tar --unlink -xpzf - -C ${_DEST}
cat crypto.?? | tar --unlink -xpzf - -C ${_DEST}
cat krb4.?? | tar --unlink -xpzf - -C ${_DEST}
echo -n "Do you want to install the DES sources (y/n)? "
cat krb5.?? | tar --unlink -xpzf - -C ${_DEST}
echo -n "Do you want to install the CRYPTO sources (y/n)? "
read ans
if [ "$ans" = "y" ]; then
cat scrypto.?? | tar --unlink -xpzf - -C ${_DEST}/usr/src
cat skerbero.?? | tar --unlink -xpzf - -C ${_DEST}/usr/src
cat ssecure.?? | tar --unlink -xpzf - -C ${_DEST}/usr/src
cat skrb4.?? | tar --unlink -xpzf - -C ${_DEST}/usr/src
cat skrb5.?? | tar --unlink -xpzf - -C ${_DEST}/usr/src
fi
exit 0