Update defaults.inc

This commit is contained in:
2023-02-20 19:24:24 -06:00
parent 4ea5e54392
commit 3c3360e474

View File

@@ -9,6 +9,7 @@ noheader=' check noup stop '
declare -A NM_SERVICES
NM_SERVICES['nordvpn']='NordVPN (VPN Tunnel)'
NM_SERVICES['openvpn']='OpenVPN (TorGuard VPN Tunnel)'
NM_SERVICES['wireguard']='WireGuard (TorGuard VPN Tunnel)'
NM_SERVICES['lidarr']='Lidarr (Music Manager)'
NM_SERVICES['radarr']='Radarr (Movie Manager)'
NM_SERVICES['radarr3d']='Radarr3D (3D Movie Manager)'
@@ -28,8 +29,10 @@ if [ "${VPN_INTERFACE}" = "nordlynx" ]; then
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)
VPN_START=(/usr/bin/wg-quick up Torguard)
VPN_STOP=(/usr/bin/wg-quick down Torguard)
fi
DEBUGLOGSTOP(){