From: Felix Fietkau Date: Tue, 24 Sep 2013 07:31:15 +0000 (+0200) Subject: scripts: delete ifup/ifdown, they are unused X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=89c6331673054d530b30b8e9e8bdf331639dfcd5;p=oweals%2Fnetifd.git scripts: delete ifup/ifdown, they are unused Signed-off-by: Felix Fietkau --- diff --git a/scripts/ifdown b/scripts/ifdown deleted file mode 120000 index a0e5c17..0000000 --- a/scripts/ifdown +++ /dev/null @@ -1 +0,0 @@ -ifup \ No newline at end of file diff --git a/scripts/ifup b/scripts/ifup deleted file mode 100755 index b62054c..0000000 --- a/scripts/ifup +++ /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"