blob: 2bf2a4133251107b5e9da3ad663ecc550cfbaa7b (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#!/sbin/openrc-run
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# (Written by Phillip Berndt <phillip.berndt at gmail dot com>)
# (Modified by Steven Brudenell <steven dot brudenell at gmail>)
depend() {
if [ ! -z "${BIND_INTERFACE}" ] ; then
if [ -x /etc/init.d/net.${BIND_INTERFACE} ] ; then
need net.${BIND_INTERFACE}
fi
fi
# If the user set TUNTAP_INTERFACE, they probably have a net script
# configuring that interface. nstxcd is responsible for actually creating
# the stupid thing, so we need to run before the config.
if [ ! -z "${TUNTAP_INTERFACE}" ] ; then
if [ -x /etc/init.d/net.${TUNTAP_INTERFACE} ] ; then
before net.${TUNTAP_INTERFACE}
fi
fi
}
loadtun() {
if [ ! -e /dev/net/tun ]
then
ebegin "Loading TUN/TAP kernel module"
modprobe -q tun
eend $?
fi
if [ ! -e /dev/net/tun ]
then
eend 1 "Failed to load TUN driver! (did you compile your kernel with TUN/TAP support?)"
return 1
fi
return 0
}
checkconfig() {
if [ -z "${DOMAIN}" ] ; then
eerror "DOMAIN must be set"
return 1
fi
[ -z "${TUNTAP_INTERFACE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -I ${TUNTAP_INTERFACE}"
[ -z "${TUNTAP_DEVICE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -d ${TUNTAP_DEVICE}"
[ -z "${BIND_INTERFACE}" ] || NSTXD_OPTS="${NSTXD_OPTS} -i ${BIND_INTERFACE}"
[ -z "${CHROOT}" ] || NSTXD_OPTS="${NSTXD_OPTS} -C ${CHROOT}"
[ -z "${NSTXD_USER}" ] || NSTXD_OPTS="${NSTXD_OPTS} -u ${NSTXD_USER}"
case "${MODE}" in
TUN)
NSTXD_OPTS="${NSTXD_OPTS} -t"
;;
TAP)
NSTXD_OPTS="${NSTXD_OPTS} -T"
;;
*)
eerror "MODE must be either TUN or TAP"
return 1
;;
esac
}
start() {
checkconfig || return 1
loadtun || return 1
ebegin "Starting nstxd"
start-stop-daemon \
--start \
--background \
--make-pidfile \
--exec /usr/sbin/nstxd \
--pidfile "/var/run/nstxd.pid" \
-- ${NSTXD_OPTS} ${DOMAIN}
eend $?
}
stop() {
ebegin "Stopping nstxd"
start-stop-daemon \
--stop \
--exec /usr/sbin/nstxd \
--pidfile "/var/run/nstxd.pid"
eend $?
}
|