diff --git a/vpnsetup.sh b/vpnsetup.sh index fc4932a..c5808c3 100755 --- a/vpnsetup.sh +++ b/vpnsetup.sh @@ -213,6 +213,19 @@ XAUTH_POOL=${VPN_XAUTH_POOL:-'192.168.43.10-192.168.43.250'} DNS_SRV1=${VPN_DNS_SRV1:-'8.8.8.8'} DNS_SRV2=${VPN_DNS_SRV2:-'8.8.4.4'} +# Verify the xl2tpd options file position +XL2TPD_OPTIONS='/etc/ppp/options.xl2tpd' +XL2TPD_OPTIONS_ALTERNATIVE1=${XL2TPD_OPTIONS} +XL2TPD_OPTIONS_ALTERNATIVE2='/etc/ppp/options' + +if ! [ -f "$XL2TPD_OPTIONS" ]; then + XL2TPD_OPTIONS=${XL2TPD_OPTIONS_ALTERNATIVE2} +fi + +if ! [ -f "$XL2TPD_OPTIONS" ]; then + exiterr "Cannot find the configure file for xl2ptd at either $XL2TPD_OPTIONS_ALTERNATIVE1 or $XL2TPD_OPTIONS_ALTERNATIVE2" +fi + # Create IPsec (Libreswan) config conf_bk "/etc/ipsec.conf" cat > /etc/ipsec.conf < /etc/ppp/options.xl2tpd < ${XL2TPD_OPTIONS} <