diff options
Diffstat (limited to 'release/scripts')
-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 |