summaryrefslogtreecommitdiff
path: root/testing/openvpn/openvpn-tapdev.rc
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-06-01 18:14:42 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-06-01 18:14:42 +0000
commit311d0420d77867bdb1066d38743e68e596a17ce5 (patch)
treea772db16100090d1cbbade0e232d88e39bd631dc /testing/openvpn/openvpn-tapdev.rc
parentc40a217db5f63be3aa88a32ad77ec93efb40d95c (diff)
Wed Jun 1 18:14:42 UTC 2011
Diffstat (limited to 'testing/openvpn/openvpn-tapdev.rc')
-rwxr-xr-xtesting/openvpn/openvpn-tapdev.rc40
1 files changed, 0 insertions, 40 deletions
diff --git a/testing/openvpn/openvpn-tapdev.rc b/testing/openvpn/openvpn-tapdev.rc
deleted file mode 100755
index 2c51f8248..000000000
--- a/testing/openvpn/openvpn-tapdev.rc
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-. /etc/conf.d/openvpn-tapdev
-
-case "$1" in
- start)
- stat_busy "Creating tap devices for OpenVPN ... "
- success=0
- for tapdev in ${TAPDEVS}; do
- stat_append "${tapdev} "
- /usr/sbin/openvpn --mktun --dev-type tap --dev ${tapdev} >/dev/null 2>&1 || success=$?
- done
- if [ $success -eq 0 ]; then
- add_daemon openvpn-tapdev
- stat_done
- else
- stat_fail
- fi
- ;;
- stop)
- stat_busy "Destroying tap devices for OpenVPN ..."
- for tapdev in ${TAPDEVS}; do
- stat_append "${tapdev} "
- /usr/sbin/openvpn --rmtun --dev-type tap --dev ${tapdev} >/dev/null 2>&1 || success=$?
- done
- rm_daemon openvpn-tapdev
- stat_done
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0