From c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 28 May 2020 11:29:34 +0200 Subject: Add netifd with patch to fix service restart --- netifd/files/sbin/ifstatus | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 netifd/files/sbin/ifstatus (limited to 'netifd/files/sbin/ifstatus') 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 " + exit 1 +} + +ubus -S list "network.interface.$INTERFACE" >/dev/null || { + echo "Interface $INTERFACE not found" + exit 1 +} +ubus call network.interface status "{ \"interface\" : \"$INTERFACE\" }" -- cgit v1.2.3