From d11fe59a0c11863fbec8c6c02d59f884b653164d Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 12 Feb 2022 21:57:34 -0600 Subject: [PATCH] Update defaults.inc --- defaults.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/defaults.inc b/defaults.inc index 55c7c8c..8f9684f 100755 --- a/defaults.inc +++ b/defaults.inc @@ -14,9 +14,9 @@ NM_SERVICES['snap.tautulli.tautulli']='Tautulli (Plex Stats)' NM_SERVICES['ombi']='Ombi (Download Requester)' if [[ $(/sbin/ip -o -4 addr list ens160 | awk '{print $4}' | cut -d/ -f1) == *"10.10.1.24"* ]]; then - VPN_START='/usr/bin/nordvpn connect' - VPN_STOP='/usr/bin/nordvpn disconnect' + VPN_START=(/usr/bin/nordvpn connect) + VPN_STOP=(/usr/bin/nordvpn disconnect) else - VPN_START='/bin/systemctl start openvpn' - VPN_STOP='/bin/systemctl stop openvpn' + VPN_START=(/bin/systemctl start openvpn) + VPN_STOP=(/bin/systemctl stop openvpn) fi \ No newline at end of file