summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-11-28 14:32:24 +0000
committerRoy Marples <roy@marples.name>2007-11-28 14:32:24 +0000
commit444f23e2d158389b22d40537fc9b027d9f575229 (patch)
tree629c5b6e13512bdf55827d7c4d682aa71c279558
parentf434007b982bf49029641d1238d929507abb4235 (diff)
downloadopenrc-444f23e2d158389b22d40537fc9b027d9f575229.tar.gz
openrc-444f23e2d158389b22d40537fc9b027d9f575229.tar.bz2
openrc-444f23e2d158389b22d40537fc9b027d9f575229.tar.xz
resolvconf may not be in /sbin
-rwxr-xr-xsh/net.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/net.sh b/sh/net.sh
index 0215330..5731ee1 100755
--- a/sh/net.sh
+++ b/sh/net.sh
@@ -652,7 +652,7 @@ stop() {
[ "${IFACE}" != "lo" -a "${IFACE}" != "lo0" ] && \
_down 2>/dev/null
- [ -x /sbin/resolvconf ] && resolvconf -d "${IFACE}"
+ type resolvconf >/dev/null 2>&1 && resolvconf -d "${IFACE}"
if type postdown >/dev/null 2>/dev/null ; then
ebegin "Running postdown"