summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/sbin/ifup
blob: 81ec2c08908a8f168b0ce1d396525af292a40c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org

. /sbin/ifdown "$@"

config_get iftype "$1" type
config_get ifname "$1" device

for dev in $ifname; do
	setup_interface "$dev" "$1"
done