diff options
author | Karel Kočí <cynerd@email.cz> | 2020-05-28 11:29:34 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-05-28 11:29:34 +0200 |
commit | c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5 (patch) | |
tree | 23efbf3e0456a78bb4a820037789477b8ab8881d /netifd/files/etc/hotplug.d/iface/00-netstate | |
parent | 68bf801ffbda2868703db98cfb2625232da9535c (diff) | |
download | openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.tar.gz openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.tar.bz2 openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.zip |
Add netifd with patch to fix service restart
Diffstat (limited to 'netifd/files/etc/hotplug.d/iface/00-netstate')
-rw-r--r-- | netifd/files/etc/hotplug.d/iface/00-netstate | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/netifd/files/etc/hotplug.d/iface/00-netstate b/netifd/files/etc/hotplug.d/iface/00-netstate new file mode 100644 index 0000000..71ccb01 --- /dev/null +++ b/netifd/files/etc/hotplug.d/iface/00-netstate @@ -0,0 +1,6 @@ +[ ifup = "$ACTION" ] && { + uci_toggle_state network "$INTERFACE" up 1 + [ -n "$DEVICE" ] && { + uci_toggle_state network "$INTERFACE" ifname "$DEVICE" + } +} |