summaryrefslogtreecommitdiffstats
path: root/net/strongswan/files/ipsec.init
blob: 391a2ae8c712d617914c363611baba64df8d46ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh /etc/rc.common

START=90
STOP=10

start() {
	ipsec start
}

stop() {
	ipsec stop
}

restart() {
	ipsec restart
}

reload() {
	ipsec update
}