summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2011-09-16 23:47:20 +0200
committerChristian Ruppert <idl0r@gentoo.org>2011-09-16 23:48:44 +0200
commit539c4e58723fbd3b8ca9f30a09e99ddaf72c30b1 (patch)
treed0200867685dc60f99cfbd4c8ca36375409cad15 /net
parente14e78db16b8ce38235665ee52e3c13375e0d168 (diff)
downloadopenrc-539c4e58723fbd3b8ca9f30a09e99ddaf72c30b1.tar.gz
openrc-539c4e58723fbd3b8ca9f30a09e99ddaf72c30b1.tar.bz2
openrc-539c4e58723fbd3b8ca9f30a09e99ddaf72c30b1.tar.xz
Print a warning if openvpn/tunctl are missing
Diffstat (limited to 'net')
-rw-r--r--net/tuntap.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/net/tuntap.sh b/net/tuntap.sh
index 851a017..14ffddb 100644
--- a/net/tuntap.sh
+++ b/net/tuntap.sh
@@ -54,15 +54,18 @@ tuntap_pre_start()
do_tunctl=true
elif type openvpn >/dev/null 2>&1; then
do_openvpn=true
- else
+ elif type tunctl >/dev/null 2>&1; then
do_tunctl=true
fi
if ${do_openvpn}; then
openvpn --mktun --dev-type "${tuntap}" --dev "${IFACE}" \
${o_opts} >/dev/null
- else
+ elif ${do_tunctl}; then
tunctl ${t_opts} -t "${IFACE}" >/dev/null
+ else
+ eerror "Neither openvpn nor tunctl has been found, please install"
+ eerror "either net-misc/openvpn or sys-apps/usermode-utilities."
fi
eend $? && _up && service_set_value tuntap "${tuntap}"
}