mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add an initial (experimental) version of netifd, disabled by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28499 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
27
package/netifd/files/sbin/ifup
Executable file
27
package/netifd/files/sbin/ifup
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$0" in
|
||||
*ifdown) modes=down;;
|
||||
*ifup) modes="down up";;
|
||||
*) echo "Invalid command: $0";;
|
||||
esac
|
||||
|
||||
if_call() {
|
||||
local interface="$1"
|
||||
for mode in $modes; do
|
||||
ubus call $interface $mode
|
||||
done
|
||||
}
|
||||
|
||||
[[ "$1" == "-a" ]] && {
|
||||
for interface in `ubus -S list 'network.interface.*'`; do
|
||||
if_call "$interface"
|
||||
done
|
||||
exit
|
||||
}
|
||||
|
||||
ubus -S list "network.interface.$1" > /dev/null || {
|
||||
echo "Interface $1 not found"
|
||||
exit
|
||||
}
|
||||
if_call "network.interface.$1"
|
||||
Reference in New Issue
Block a user