From 60d288a877a3671ea5b3483ed7c4612ec897b99a Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Sun, 1 Dec 2013 19:25:01 -0600 Subject: remove type command The posix equivalent of the type command is "command -v", so now we use that. Thanks to Jonathan Callen for informing me wrt the fix. --- support/openvpn/up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/openvpn/up.sh') 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 -- cgit v1.2.3