diff options
author | jkh <jkh@FreeBSD.org> | 2000-03-21 19:13:31 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-03-21 19:13:31 +0000 |
commit | 0d11ddfc5e20854bc3e811cecdc6d9c5480c32d6 (patch) | |
tree | 5ab17b43dbc58536449cb282c38267bfa4caf39a /release | |
parent | 09344fa4cdd4e6226e9449eef85391bda01ff83e (diff) | |
download | FreeBSD-src-0d11ddfc5e20854bc3e811cecdc6d9c5480c32d6.zip FreeBSD-src-0d11ddfc5e20854bc3e811cecdc6d9c5480c32d6.tar.gz |
Adapt to the crypto distribution.
Diffstat (limited to 'release')
-rwxr-xr-x | release/scripts/crypto-install.sh (renamed from release/scripts/des-install.sh) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/release/scripts/des-install.sh b/release/scripts/crypto-install.sh index 477210b..d915431 100755 --- a/release/scripts/des-install.sh +++ b/release/scripts/crypto-install.sh @@ -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 |