mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-07 14:28:50 +00:00
a0a9319149
SVN-Revision: 4650
12 lines
181 B
Bash
Executable File
12 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
. /sbin/ifdown "$@"
|
|
|
|
config_get iftype "$1" type
|
|
config_get ifname "$1" ifname
|
|
|
|
for dev in $ifname; do
|
|
setup_interface "$dev" "$1"
|
|
done
|