strongswan: import, update, adopt
[feed/packages.git] / net / strongswan / files / ipsec.init
1 #!/bin/sh /etc/rc.common
2
3 START=90
4 STOP=10
5
6 start() {
7 ipsec start
8 }
9
10 stop() {
11 ipsec stop
12 }
13
14 restart() {
15 ipsec restart
16 }
17
18 reload() {
19 ipsec update
20 }