1
0
鏡像自 git://projects.qi-hardware.com/openwrt-xburst.git 已同步 2025-04-21 12:27:27 +03:00

fix error messages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2996 3c298f89-4303-0410-b956-a3cf2f4a3e73
此提交包含在:
mbm
2006-01-16 19:16:20 +00:00
父節點 d4c349192a
當前提交 0ccf2d8759
共有 2 個檔案被更改,包括 3 行新增7 行删除

查看文件

@@ -75,12 +75,7 @@ do_ifup() {
DHCP_HOSTNAME=${DHCP_HOSTNAME%%.*}
[ -z $DHCP_HOSTNAME ] || DHCP_ARGS="$DHCP_ARGS -H $DHCP_HOSTNAME"
[ "$if_proto" = "pptp" ] && DHCP_ARGS="$DHCP_ARGS -n -q" || DHCP_ARGS="$DHCP_ARGS -R &"
oldpid=$(cat $pidfile)
${DEBUG:-eval} "udhcpc $DHCP_ARGS"
pidof udhcpc | grep "$oldpid" >&- 2>&- && {
sleep 1
kill -9 $oldpid
}
# hotplug events are handled by /usr/share/udhcpc/default.script
;;
*)

查看文件

@@ -28,8 +28,9 @@ case "$1" in
if [ -n "$router" ] ; then
if [ "$router" != "$(route -n | grep '^0.0.0.0' | grep $interface | awk '{ print $2 }')" ] ; then
echo "deleting routers"
while route del default gw 0.0.0.0 dev $interface ; do :; done
while route del default gw 0.0.0.0 dev $interface 2>&- ; do
echo "removing old default route"
done
for i in $router ; do
route add default gw $i dev $interface
done