1
0
mirror of synced 2025-02-19 21:43:17 +03:00

Update IKEv2 script

- Fix CentOS detection
- Set MOBIKE question default to 'yes'
This commit is contained in:
hwdsl2 2020-05-11 23:15:05 -05:00
parent 6a285499e3
commit 5bf8b86192

View File

@ -84,7 +84,7 @@ You can use the default options and just press enter if you are OK with them.
EOF EOF
echo "Do you want IKEv2 VPN clients to connect to this VPN server using a DNS name," echo "Do you want IKEv2 VPN clients to connect to this server using a DNS name,"
printf "e.g. vpn.example.com, instead of its IP address [y/N]? " printf "e.g. vpn.example.com, instead of its IP address [y/N]? "
read -r response read -r response
case $response in case $response in
@ -132,6 +132,7 @@ if [ "$mobike_support" = "1" ]; then
[ -f /etc/lsb-release ] && os_type="$(. /etc/lsb-release && printf '%s' "$DISTRIB_ID")" [ -f /etc/lsb-release ] && os_type="$(. /etc/lsb-release && printf '%s' "$DISTRIB_ID")"
[ "$os_type" = "ubuntu" ] && os_type=Ubuntu [ "$os_type" = "ubuntu" ] && os_type=Ubuntu
fi fi
[ -z "$os_type" ] && [ -f /etc/redhat-release ] && os_type=CentOS/RHEL
if [ -z "$os_type" ] || [ "$os_type" = "Ubuntu" ]; then if [ -z "$os_type" ] || [ "$os_type" = "Ubuntu" ]; then
mobike_support=0 mobike_support=0
fi fi
@ -140,10 +141,10 @@ fi
mobike_enable=0 mobike_enable=0
if [ "$mobike_support" = "1" ]; then if [ "$mobike_support" = "1" ]; then
echo echo
printf "Do you want to enable MOBIKE support [y/N]? " printf "Do you want to enable MOBIKE support [Y/n]? "
read -r response read -r response
case $response in case $response in
[yY][eE][sS]|[yY]) [yY][eE][sS]|[yY]|'')
mobike_enable=1 mobike_enable=1
;; ;;
*) *)