summaryrefslogtreecommitdiff
path: root/netifd/files/sbin/ifstatus
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-05-29 11:19:21 +0200
committerKarel Kočí <cynerd@email.cz>2020-05-29 11:19:21 +0200
commit3d78a068cbe7ce0eccf65491aef2d235d31fae99 (patch)
treef4582f92497b985ea812fca9802feee7ecfcd8ed /netifd/files/sbin/ifstatus
parentc606e009f2639c6b0518c9ad2bdf2b77c35ca6e5 (diff)
downloadopenwrt-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-xnetifd/files/sbin/ifstatus13
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\" }"