summaryrefslogtreecommitdiffstats
path: root/package/vtun/vtund.rc.debian-2.6
blob: eb8226e9cb3f24eac565a1634642dc61e94e8ba8 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! /bin/sh
#
 
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/sbin/vtund
CONFFILE=/etc/vtund-start.conf
PIDPREFIX=/var/run/vtund
  
test -f $DAEMON || exit 0
  
case "$1" in 
       start)
      # find all the defined tunnels
      egrep -v '^[:space:]*(#.*)?$' $CONFFILE | while true;
      do
          read i
          # no more lines available? done, then.
          if [ $? != 0 ] ; then break; fi
              SARGS=`echo $i|sed -ne 's/--server--\s*/-s -P /p'`;
              if [ -n "$SARGS" ];
              then
                 echo "Starting vtund server."
                  start-stop-daemon -S -x $DAEMON -- $SARGS;
              else
                  # split args into host and rest
                  HOST=`echo $i|cut -f 1 -d " "`;
                  TARGET=`echo $i|cut -f 2 -d " "`;
                  echo  "Starting vtund client $HOST to $TARGET.";
                  start-stop-daemon -S -x $DAEMON -- $i;

              fi
          done
              ;;
       stop) 
	  echo "Stopping vtund.";
	  start-stop-daemon -K -x vtund;
	  ;;

       restart|reload|force-reload) 
	   $0 stop
	   sleep 1;
	   $0 start
	   ;;
   *)
      echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
       exit 1
               ;;
esac
exit 0