diff options
Diffstat (limited to 'support/openvpn/down.sh')
-rwxr-xr-x | support/openvpn/down.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/openvpn/down.sh b/support/openvpn/down.sh index 93dd53ca..b94862b1 100755 --- a/support/openvpn/down.sh +++ b/support/openvpn/down.sh @@ -6,7 +6,7 @@ [ -x "${RC_SVCNAME}"-down.sh ] && "${RC_SVCNAME}"-down.sh # Restore resolv.conf to how it was -if type resolvconf >/dev/null 2>&1; then +if command -v resolvconf >/dev/null 2>&1; then resolvconf -d "${dev}" elif [ -e /etc/resolv.conf-"${dev}".sv ]; then # Important that we copy instead of move incase resolv.conf is |