diff options
author | Mike Baker <mbm@openwrt.org> | 2004-06-06 06:08:19 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2004-06-06 06:08:19 +0000 |
commit | fdf501334c5686fe44520c113a07bcc2409d3869 (patch) | |
tree | 454bbc0851c555f2734d4d48ff67dc497bf5449b /root | |
parent | c20c90cac2378ab549b5ef86ceaf9e244883c2b8 (diff) | |
download | mtk-20170518-fdf501334c5686fe44520c113a07bcc2409d3869.zip mtk-20170518-fdf501334c5686fe44520c113a07bcc2409d3869.tar.gz mtk-20170518-fdf501334c5686fe44520c113a07bcc2409d3869.tar.bz2 |
more cleanup
SVN-Revision: 63
Diffstat (limited to 'root')
-rwxr-xr-x | root/etc/functions.sh | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/root/etc/functions.sh b/root/etc/functions.sh index f8af756..21efbaf 100755 --- a/root/etc/functions.sh +++ b/root/etc/functions.sh @@ -23,7 +23,6 @@ if_valid () ( $DEBUG vconfig add $vif $i 2>/dev/null } ifconfig "$1" >/dev/null 2>&1 || [ "${1%%[0-9]}" = "br" ] - return $? ) wifi () ( @@ -59,7 +58,7 @@ ifup () ( fi if_mac=$(nvram_get ${type}_hwaddr) - [ -z "$if_mac" ] || $DEBUG ifconfig $if hw ether $if_mac + ${if_mac:+$DEBUG ifconfig $if hw ether $if_mac} if_proto=$(nvram_get ${type}_proto) case "$if_proto" in @@ -68,12 +67,8 @@ ifup () ( if_netmask=$(nvram_get ${type}_netmask) if_gateway=$(nvram_get ${type}_gateway) - ipcalc -s "$if_ip" || return - ipcalc -s "$if_netmask" || return - $DEBUG ifconfig $if $if_ip netmask $if_netmask up - - ipcalc -s "$if_gateway" || return - $DEBUG route add default gw $if_gateway + $DEBUG ifconfig $if $if_ip ${if_netmask:+netmask $if_netmask} up + ${if_gateway:+$DEBUG route add default gw $if_gateway} [ -f /etc/resolv.conf ] && return @@ -87,8 +82,7 @@ ifup () ( if [ -f $pidfile ]; then $DEBUG kill $(cat $pidfile) fi - cmd="udhcpc -i $if -b -p $pidfile &" - ${DEBUG:-eval} $cmd + ${DEBUG:-eval} "udhcpc -i $if -b -p $pidfile &" ;; pppoe) if_username=$(nvram_get ppp_username) @@ -110,6 +104,5 @@ ifdown () ( type=$1 debug "### ifdown $type ###" if=$(nvram_get ${type}_ifname) - if_valid $if || return - $DEBUG ifdown $if + if_valid $if && $DEBUG ifconfig $if down ) |