summaryrefslogtreecommitdiff
path: root/social/openswan/openswan.rc.d
blob: 30bd0d56eca79edb87820df5519a8e33433a97af (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
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

case "$1" in
  start)
    stat_busy "Starting Openswan IPsec"
    /etc/rc.d/ipsec --start
    if [ $? -gt 0 ]; then
      stat_fail
    else
      stat_done
      add_daemon openswan
    fi
    ;;
  stop)
    stat_busy "Stopping Openswan IPsec"
    /etc/rc.d/ipsec --stop
    if [ $? -gt 0 ]; then
      stat_fail
    else
      stat_done
      rm_daemon openswan
    fi
    ;;
  restart)
    stat_busy "Restarting Openswan IPsec"
    /etc/rc.d/ipsec --restart
    if [ $? -gt 0 ]; then
      stat_fail
    else
      stat_done
      add_daemon openswan
    fi
    ;;
  status)
    /etc/rc.d/ipsec --status
    ;;
  *)
    echo "usage: $0 {start|stop|restart|status}"  
esac