blob: 73e75949950f56ea963bc1967775545b1d190197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#!/bin/bash
# Copyright (c) 2004-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Contributed by Roy Marples (uberlord@gentoo.org)
# void iptunnel_depend(void)
#
# Sets up the dependancies for the module
iptunnel_depend() {
after wireless
before interface
functions interface_exists interface_tunnel
variables iptunnel
}
# bool iptunnel_pre_start(char *iface)
#
# Create the device, give it the right perms
iptunnel_pre_start() {
local iface="$1" opts ifvar=$( bash_variable "$1" )
# Get our options
eval opts="iptunnel_${ifvar}"
[[ -z ${!opts} ]] && return 0
ebegin "Creating tunnel ${iface}"
interface_tunnel add "${iface}" ${!opts}
eend "$?"
}
# bool iptunnel_stop(char *iface)
#
# Removes the device
iptunnel_stop() {
local iface="$1"
interface_exists "${iface}" || return 0
[[ -z $( interface_tunnel show "${iface}" 2>/dev/null ) ]] && return 0
ebegin "Destroying tunnel ${iface}"
interface_tunnel del "${iface}"
eend "$?"
}
# vim:ts=4
|