Files
Steven Barth e60cbd46cb strongswan: import, update, adopt
Signed-off-by: Steven Barth <steven@midlink.org>
2015-02-13 12:16:41 +01:00

21 lines
151 B
Bash

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