1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-03 22:35:53 +03:00
openwrt-xburst/package/netifd/files/sbin/ifup
nbd 9891a9a835 netifd: reload the network config on ifup -a
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28544 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-10-23 17:22:01 +00:00

29 lines
506 B
Bash
Executable File

#!/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" ]] && {
[ "$modes" = "down up" ] && ubus call network reload
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"