packages/net/ipsec-tools/files/racoon.init
Noah Meyerhans 0230141e17 ipsec-tools: Use procd in racoon's init script
Signed-off-by: Noah Meyerhans <frodo@morgul.net>
2014-12-06 14:11:10 -08:00

17 lines
468 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2009-2011 OpenWrt.org
# Copyright (C) 2011 Artem Makhutov
# Copyright (C) 2014 Noah Meyerhans <frodo@morgul.net>
USE_PROCD=1
START=49
start_service() {
mkdir -m 0700 -p /var/racoon
[ -f /etc/ipsec.conf ] && /usr/sbin/setkey -f /etc/ipsec.conf
procd_open_instance
procd_set_param command /usr/sbin/racoon -F -f /etc/racoon/racoon.conf -l /var/log/racoon
procd_set_param respawn
procd_close_instance
}