blob: 1e26131310240d20b190e5e71a08004cab4136ae (
plain) (
blame)
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
|
#!/bin/sh
SHORT_NAME="tugwirevpnc"
DESC_NAME="tug WIRE (vpnc)"
INTERFACE="{{ ws_minet_wired_interface_name }}"
MODULE_NAME="{{ ws_minet_wired_interface_module }}"
. /usr/local/lib/minet/minet_helpers.sh
case "$1" in
start|"")
echo "Connecting with $DESC_NAME"
activate_interface $INTERFACE $MODULE_NAME
dhclient $INTERFACE -v -pf /var/run/dhclient.$SHORT_NAME.pid
vpnc --natt-mode none --pid-file /var/run/vpnc.$SHORT_NAME.pid /etc/vpnc/tug.conf
;;
stop)
echo "Disconnecting from $DESC_NAME"
kill `cat /var/run/vpnc.$SHORT_NAME.pid`
rm -f /var/run/vpnc.$SHORT_NAME.pid
kill `cat /var/run/dhclient.$SHORT_NAME.pid`
rm -f /var/run/dhclient.$SHORT_NAME.pid
deactivate_interface $INTERFACE $MODULE_NAME
;;
*)
exit 1
;;
esac
|