openwrtv4/openwrt/package/base-files/default/sbin/ifup
Felix Fietkau 733dc97762 hotplug-based network script rewrite
SVN-Revision: 2531
2005-11-19 03:17:20 +00:00

31 lines
610 B
Bash
Executable file

#!/bin/sh
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/network.overrides
[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
ifdown $1
debug "### ifup $type ###"
type=$1
if_proto=$(nvram get ${type}_proto)
if=$(nvram get ${type}_ifname)
case "$if_proto" in
pppoa) hotplug_dev register atm0; exit 0 ;;
pppoe)
[ "$(nvram get pppoe_atm)" = 1 ] && {
hotplug_dev register atm0
exit
}
;;
esac
if [ "${if%%[0-9]}" = "br" ]; then
for sif in $(nvram get ${type}_ifnames); do
hotplug_dev register "$sif"
done
else
hotplug_dev register "$if"
fi