scripts: delete ifup/ifdown, they are unused
authorFelix Fietkau <nbd@openwrt.org>
Tue, 24 Sep 2013 07:31:15 +0000 (09:31 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 19 Oct 2013 15:31:55 +0000 (17:31 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
scripts/ifdown [deleted symlink]
scripts/ifup [deleted file]

diff --git a/scripts/ifdown b/scripts/ifdown
deleted file mode 120000 (symlink)
index a0e5c17..0000000
+++ /dev/null
@@ -1 +0,0 @@
-ifup
\ No newline at end of file
diff --git a/scripts/ifup b/scripts/ifup
deleted file mode 100755 (executable)
index b62054c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-case "$0" in
-       *ifdown) mode=down;;
-       *ifup) mode=up;;
-       *) echo "Invalid command: $0";;
-esac
-
-[[ "$1" == "-a" ]] && {
-       for interface in `ubus -S list 'network.interface.*'`; do
-               ubus call $interface $mode
-       done
-       exit
-}
-
-ubus -S list "network.interface.$1" > /dev/null || {
-       echo "Interface $1 not found"
-       exit
-}
-ubus call "network.interface.$1" "$mode"