Browse Source

Merge pull request #1030 from giner/patch-2

wshaper: start wshaper on ifup
lilik-openwrt-22.03
Jo-Philipp Wich 10 years ago
parent
commit
f55314de0e
2 changed files with 5 additions and 1 deletions
  1. +2
    -1
      net/wshaper/Makefile
  2. +3
    -0
      net/wshaper/files/wshaper.iface

+ 2
- 1
net/wshaper/Makefile View File

@ -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


+ 3
- 0
net/wshaper/files/wshaper.iface View File

@ -0,0 +1,3 @@
#!/bin/sh
[ "$ACTION" = ifup ] && /etc/init.d/wshaper enabled && /etc/init.d/wshaper start || exit 0

Loading…
Cancel
Save