1
1
mirror of https://github.com/namibia/openvpn-install.git synced 2024-06-09 22:52:20 +00:00
This commit is contained in:
angristan 2018-09-22 14:23:58 +02:00
parent 7449bfc550
commit c1b069b501

View File

@ -342,7 +342,7 @@ function installOpenVPN () {
echo " 2) 3072 bits"
echo " 3) 4096 bits"
until [[ "$RSA_KEY_SIZE_CHOICE" =~ ^[0-9]+$ ]] && [ "$RSA_KEY_SIZE_CHOICE" -ge 1 ] && [ "$RSA_KEY_SIZE_CHOICE" -le 3 ]; do
read -rp "RSA key size [1-3]: " -e -i 2 RSA_KEY_SIZE_CHOICE
read -rp "RSA key size [1-3]: " -e -i 1 RSA_KEY_SIZE_CHOICE
done
case $RSA_KEY_SIZE_CHOICE in
1)