blob: 225a7caa83e7131522bb11f583f2c6db63a08911 (
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
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/files/tincd,v 1.1 2003/12/24 14:23:51 bazik Exp $
depend() {
use logger dns
need net
}
checkconfig() {
if [ ! `grep -c '^ *NETWORK:' /etc/conf.d/tinc.networks` > 0 ]
then
eerror "No VPN networks configured in /etc/conf.d/tinc.networks"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting tinc VPN networks"
eend 0
cat /etc/conf.d/tinc.networks | grep '^ *NETWORK:' | awk '{ print $2 }' | while read TINCNET
do
if [ ! -f /etc/tinc/$TINCNET/tinc.conf ]
then
eerror "Cannot start network $TINCNET, /etc/tinc/$TINCNET/tinc.conf does not exist !"
else
ebegin "Starting tinc network $TINCNET"
/usr/sbin/tincd --net=$TINCNET --logfile=/var/log/tinc.$TINCNET.log --pidfile=/var/run/tinc.$TINCNET.pid
eend $?
fi
done
}
stop() {
ebegin "Stopping tinc VPN networks"
eend 0
cat /etc/conf.d/tinc.networks | grep '^ *NETWORK:' | awk '{ print $2 }' | while read TINCNET
do
if [ -f /var/run/tinc.$TINCNET.pid ]
then
ebegin "Stopping tinc network $TINCNET"
/usr/sbin/tincd --kill=9 `cat /var/run/tinc.$TINCNET.pid` --pidfile=/var/run/tinc.$TINCNET.pid
eend $?
#rm -f /var/run/tinc.$TINCNET.pid
fi
done
}
|