diff options
author | Karel Kočí <cynerd@email.cz> | 2020-05-29 11:19:21 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-05-29 11:19:21 +0200 |
commit | 3d78a068cbe7ce0eccf65491aef2d235d31fae99 (patch) | |
tree | f4582f92497b985ea812fca9802feee7ecfcd8ed /netifd/files/sbin/ifstatus | |
parent | c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5 (diff) | |
download | openwrt-personal-pkgs-3d78a068cbe7ce0eccf65491aef2d235d31fae99.tar.gz openwrt-personal-pkgs-3d78a068cbe7ce0eccf65491aef2d235d31fae99.tar.bz2 openwrt-personal-pkgs-3d78a068cbe7ce0eccf65491aef2d235d31fae99.zip |
netifd: drop
Diffstat (limited to 'netifd/files/sbin/ifstatus')
-rwxr-xr-x | netifd/files/sbin/ifstatus | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/netifd/files/sbin/ifstatus b/netifd/files/sbin/ifstatus deleted file mode 100755 index 8a951e6..0000000 --- a/netifd/files/sbin/ifstatus +++ /dev/null @@ -1,13 +0,0 @@ -#!/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\" }" |