aboutsummaryrefslogtreecommitdiff
path: root/net/libreswan/files/ipsec.init
blob: f33d41292420a89f0e5a0e024ecbc61f6149e842 (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
31
32
33
34
35
36
#!/bin/sh /etc/rc.common

START=90
STOP=10

USE_PROCD=1
PROG="/usr/libexec/ipsec/pluto"
IPSEC_SECRETS=/etc/ipsec.secrets
IPSEC_CONF=/etc/ipsec.conf
IPSEC_BIN=/usr/sbin/ipsec

checkconfig() {
    ${IPSEC_BIN} addconn --checkconfig || return 1
    mkdir -p /var/run/pluto
}

start_service() {
	checkconfig || return 1

	ipsec _stackmanager start
	# Enable nflog if configured
	ipsec --checknflog > /dev/null

	procd_open_instance
	procd_set_param command $PROG --config ${IPSEC_CONF} --nofork --secretsfile ${IPSEC_SECRETS}
	procd_set_param respawn
	procd_close_instance
}

stop_service() {
	ipsec whack --shutdown
	ipsec _stackmanager stop
	ipsec --stopnflog > /dev/null

}