blob: 06905c28e8a5275e8d2ff1c8f1adb1d196fdb727 (
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
|
#!/sbin/openrc-run
description="strongSwan charon IKE daemon"
command="/usr/lib/strongswan/charon"
pidfile="/var/run/charon.pid"
start_stop_daemon_args="--background"
extra_started_commands="reload status"
depend() {
need net
after firewall
provide ipsec
}
start_post() {
ebegin "Loading ${name:-$RC_SVCNAME} configuration"
sleep 0.2
swanctl --load-all &>/dev/null
eend $?
}
reload() {
swanctl --reload-settings
swanctl --load-all
}
status() {
swanctl --list-conns
swanctl --list-sas
}
|