From fa34dad8d6dd45026edb0d6b9e78a3530a024fbe Mon Sep 17 00:00:00 2001 From: ShaneLU Date: Sat, 12 Aug 2017 16:18:06 +0800 Subject: [PATCH] The xl2ptd option file could be found at either /etc/ppp/options.xl2ptd or /etc/ppp/options, so we check both positions for the file before we modify the file. --- vpnsetup.sh | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/vpnsetup.sh b/vpnsetup.sh index 33bee0a..ec83f76 100755 --- a/vpnsetup.sh +++ b/vpnsetup.sh @@ -218,6 +218,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} <