aboutsummaryrefslogtreecommitdiff
path: root/package/network/config/netifd/files/sbin/ifup
blob: fbf2fd80c7ea7d1665400342adb20ebb105dd3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

ifup_all=

if_call() {
	local interface="$1"
	for mode in $modes; do
		ubus call network.interface $mode "{ \"interface\" : \"$interface\" }"
	done
}

case "$0" in
	*ifdown) modes=down;;
	*ifup)
		modes="down up"
	;;
	*) echo "Invalid command: $0";;
esac

while :; do
	case "$1" in
		-a)
			ifup_all=1
			shift
		;;
		*)
			break
		;;
	esac
done

[ "$modes" = "down up" ] && ubus call network reload
if [ -n "$ifup_all" ]; then
	for interface in $(ubus -S list 'network.interface.*'); do
		if_call "${interface##network.interface.}"
	done
	exit
else
	ubus -S list "network.interface.$1" > /dev/null || {
		echo "Interface $1 not found"
		exit
	}
	if_call "$1"
fi