From b64c2dc39999c94914df03a0075686f85c5568c8 Mon Sep 17 00:00:00 2001 From: Stanislav German-Evtushenko Date: Thu, 12 Mar 2015 00:38:14 +0300 Subject: [PATCH] wshaper: start wshaper on ifup --- net/wshaper/Makefile | 3 ++- net/wshaper/files/wshaper.iface | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 net/wshaper/files/wshaper.iface diff --git a/net/wshaper/Makefile b/net/wshaper/Makefile index 5007a8735..65b4045be 100644 --- a/net/wshaper/Makefile +++ b/net/wshaper/Makefile @@ -44,9 +44,10 @@ define Build/Compile endef define Package/wshaper/install - $(INSTALL_DIR) $(1)/usr/sbin/ $(1)/etc/init.d $(1)/etc/config + $(INSTALL_DIR) $(1)/usr/sbin/ $(1)/etc/init.d $(1)/etc/config $(1)/etc/hotplug.d/iface $(INSTALL_BIN) ./files/wshaper.htb $(1)/usr/sbin/ $(INSTALL_BIN) ./files/wshaper.init $(1)/etc/init.d/wshaper + $(INSTALL_BIN) ./files/wshaper.iface $(1)/etc/hotplug.d/iface/10-wshaper $(INSTALL_DATA) ./files/wshaper.config $(1)/etc/config/wshaper endef diff --git a/net/wshaper/files/wshaper.iface b/net/wshaper/files/wshaper.iface new file mode 100644 index 000000000..2964005df --- /dev/null +++ b/net/wshaper/files/wshaper.iface @@ -0,0 +1,3 @@ +#!/bin/sh + +[ "$ACTION" = ifup ] && /etc/init.d/wshaper enabled && /etc/init.d/wshaper start || exit 0