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/sbin/ifstatus | |
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/sbin/ifstatus')
-rwxr-xr-x | netifd/files/sbin/ifstatus | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/netifd/files/sbin/ifstatus b/netifd/files/sbin/ifstatus new file mode 100755 index 0000000..8a951e6 --- /dev/null +++ b/netifd/files/sbin/ifstatus @@ -0,0 +1,13 @@ +#!/bin/sh +INTERFACE="$1" + +[ -n "$INTERFACE" ] || { + echo "Usage: $0 <interface>" + exit 1 +} + +ubus -S list "network.interface.$INTERFACE" >/dev/null || { + echo "Interface $INTERFACE not found" + exit 1 +} +ubus call network.interface status "{ \"interface\" : \"$INTERFACE\" }" |