diff options
author | Jesse Young <jesse.young@gmail.com> | 2010-11-01 11:33:26 -0500 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2010-11-14 23:03:20 +0100 |
commit | 3adf2f558e157ef5087ca44f13e097a394ef7c78 (patch) | |
tree | 96e30ee04f008f2f1f20ae432fe31d42e68c186f /contrib/pull-resolv-conf/client.up | |
parent | Merge branch 'svn-BETA21' into bugfix2.1 (diff) | |
download | openvpn-3adf2f558e157ef5087ca44f13e097a394ef7c78.tar.xz |
Remove hardcoded path to resolvconf
Signed-off-by: Jesse Young <jesse.young@gmail.com>
Acked-by: David Sommerseth <dazo@users.sourceforge.net>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'contrib/pull-resolv-conf/client.up')
-rw-r--r-- | contrib/pull-resolv-conf/client.up | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/pull-resolv-conf/client.up b/contrib/pull-resolv-conf/client.up index e81bd3a..b28d4d1 100644 --- a/contrib/pull-resolv-conf/client.up +++ b/contrib/pull-resolv-conf/client.up @@ -33,6 +33,7 @@ # A horrid work around, from a security perspective, # is to run OpenVPN as root. THIS IS NOT RECOMMENDED. You have # been WARNED. +PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin # init variables @@ -86,8 +87,8 @@ fi out="# resolv.conf autogenerated by ${0} (${1})${nl}${dns}${nl}${ds}${domains}" # use resolvconf if it's available -if [ -x /sbin/resolvconf ] ; then - printf "%s\n" "${out}" | /sbin/resolvconf -a "${1}" +if type resolvconf >/dev/null 2>&1; then + printf "%s\n" "${out}" | resolvconf -p -a "${1}" else # Preserve the existing resolv.conf if [ -e /etc/resolv.conf ] ; then |