* [PATCH] minor tweak to keep network-bridge working in busybox environment
@ 2006-05-19 18:02 David Lively
2006-05-20 7:32 ` Christian Limpach
0 siblings, 1 reply; 2+ messages in thread
From: David Lively @ 2006-05-19 18:02 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 376 bytes --]
Hi Folks -
The latest tweak to the network-bridge script doesn't work in a
busybox environment (because the busybox version of 'awk' is a
little too feeble). The attached patch fixes this, while keeping it
working in a more capable environment. (It also generalizes the
vifnum extraction slightly - stripping all leading non-numeric chars
from the default ifname.)
Dave
[-- Attachment #2: network-bridge-tweak.patch --]
[-- Type: text/x-patch, Size: 674 bytes --]
Make the latest network-bridge tweaks work in a busybox environment too.
Signed-off-by: David Lively <dlively@virtualiron.com>
diff -r aa17b7173325 tools/examples/network-bridge
--- a/tools/examples/network-bridge Thu May 18 21:41:56 2006 +0100
+++ b/tools/examples/network-bridge Fri May 19 14:00:34 2006 -0400
@@ -59,7 +59,7 @@ findCommand "$@"
findCommand "$@"
evalVariables "$@"
-vifnum=${vifnum:-$(ip route list | awk '/^default / { sub(/^(eth|xenbr)/,"",$NF); print $NF }')}
+vifnum=${vifnum:-$(ip route list | awk '/^default / { print $NF }' | sed -r 's/[^0-9]+//')}
bridge=${bridge:-xenbr${vifnum}}
netdev=${netdev:-eth${vifnum}}
antispoof=${antispoof:-no}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-05-20 7:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-19 18:02 [PATCH] minor tweak to keep network-bridge working in busybox environment David Lively
2006-05-20 7:32 ` Christian Limpach
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.