1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

conntrack-tools: add init script for conntrackd

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>

SVN-Revision: 45737
This commit is contained in:
John Crispin 2015-05-23 15:28:56 +00:00
parent 9a96820d3d
commit a2d0d58a8e
2 changed files with 19 additions and 0 deletions

@ -63,6 +63,8 @@ define Package/conntrack-tools/install
$(PKG_INSTALL_DIR)/usr/sbin/conntrack \
$(PKG_INSTALL_DIR)/usr/sbin/conntrackd \
$(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/conntrackd.init $(1)/etc/init.d/conntrackd
endef
$(eval $(call BuildPackage,conntrack-tools))

@ -0,0 +1,17 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2015 OpenWrt.org
START=21
STOP=89
USE_PROCD=1
PROG="/usr/sbin/conntrackd"
start_service() {
procd_open_instance
procd_set_param command $PROG -C /etc/conntrackd/conntrackd.conf
procd_set_param respawn
procd_close_instance
}