nlbwmon: add hotplug script to reload after interface ifup
Add a hotplug script to reload nlbwmon's config after interface ifup actions. That should improve the detection of the IPv6 LAN address that can get enabled a bit later in the boot process. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
This commit is contained in:
parent
211db341e9
commit
25dfa20780
2 changed files with 13 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=nlbwmon
|
PKG_NAME:=nlbwmon
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL:=https://github.com/jow-/nlbwmon.git
|
PKG_SOURCE_URL:=https://github.com/jow-/nlbwmon.git
|
||||||
|
@ -25,7 +25,7 @@ define Package/nlbwmon
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
DEPENDS:=+libubox +libnl-tiny +zlib +kmod-nf-conntrack-netlink
|
DEPENDS:=+libubox +libnl-tiny +zlib +kmod-nf-conntrack-netlink
|
||||||
TITLE:=LEDE Traffic Usage Monitor
|
TITLE:=OpenWrt Traffic Usage Monitor
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/nlbwmon/install
|
define Package/nlbwmon/install
|
||||||
|
@ -38,6 +38,8 @@ define Package/nlbwmon/install
|
||||||
$(INSTALL_BIN) ./files/nlbwmon.init $(1)/etc/init.d/nlbwmon
|
$(INSTALL_BIN) ./files/nlbwmon.init $(1)/etc/init.d/nlbwmon
|
||||||
$(INSTALL_DIR) $(1)/etc/config
|
$(INSTALL_DIR) $(1)/etc/config
|
||||||
$(INSTALL_CONF) ./files/nlbwmon.config $(1)/etc/config/nlbwmon
|
$(INSTALL_CONF) ./files/nlbwmon.config $(1)/etc/config/nlbwmon
|
||||||
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
||||||
|
$(INSTALL_BIN) ./files/nlbwmon.hotplug $(1)/etc/hotplug.d/iface/30-nlbwmon
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/nlbwmon/conffiles
|
define Package/nlbwmon/conffiles
|
||||||
|
|
9
net/nlbwmon/files/nlbwmon.hotplug
Normal file
9
net/nlbwmon/files/nlbwmon.hotplug
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
[ -n "$DEVICE" ] || exit 0
|
||||||
|
|
||||||
|
[ "$ACTION" = ifup ] && /etc/init.d/nlbwmon enabled && {
|
||||||
|
/etc/init.d/nlbwmon reload
|
||||||
|
logger -t nlbwmon "Reloading nlbwmon due to $ACTION of $INTERFACE ($DEVICE)"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue