summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rwxr-xr-xsupport/openvpn/down.sh2
-rwxr-xr-xsupport/openvpn/up.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/support/openvpn/down.sh b/support/openvpn/down.sh
index 93dd53c..b94862b 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
diff --git a/support/openvpn/up.sh b/support/openvpn/up.sh
index f207dce..8e21069 100755
--- a/support/openvpn/up.sh
+++ b/support/openvpn/up.sh
@@ -45,7 +45,7 @@ if [ -n "${NS}" ]; then
DNS="${DNS}domain ${DOMAIN}\n"
fi
DNS="${DNS}${NS}"
- if type resolvconf >/dev/null 2>&1; then
+ if command -v resolvconf >/dev/null 2>&1; then
printf "${DNS}" | resolvconf -a "${dev}"
else
# Preserve the existing resolv.conf