From 10ee166a405c218a9b4069ed45c72fddd357f539 Mon Sep 17 00:00:00 2001 From: Jonathan Almeida Date: Sat, 29 Apr 2017 22:07:26 -0400 Subject: [PATCH] Add NET_IF_BASE for centos script --- vpnsetup_centos.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/vpnsetup_centos.sh b/vpnsetup_centos.sh index 16019e0..5503a39 100755 --- a/vpnsetup_centos.sh +++ b/vpnsetup_centos.sh @@ -60,8 +60,9 @@ if [ "$(id -u)" != 0 ]; then exiterr "Script must be run as root. Try 'sudo sh $0'" fi -NET_IF0=${VPN_IFACE:-'eth0'} -NET_IFS=${VPN_IFACE:-'eth+'} +NET_IF_BASE='eth' +NET_IF0=${VPN_IFACE:-NET_IF_BASE'0'} +NET_IFS=${VPN_IFACE:-NET_IF_BASE'+'} if_state=$(cat "/sys/class/net/$NET_IF0/operstate" 2>/dev/null) if [ -z "$if_state" ] || [ "$if_state" = "down" ] || [ "$NET_IF0" = "lo" ]; then printf "Error: Network interface '%s' is not available.\n" "$NET_IF0" >&2