packages/net/strongswan/files/ipsec.init

21 lines
151 B
Text
Raw Normal View History

#!/bin/sh /etc/rc.common
START=90
STOP=10
start() {
ipsec start
}
stop() {
ipsec stop
}
restart() {
ipsec restart
}
reload() {
ipsec update
}