summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Davidson <james.davidson@vyatta.com>2013-02-06 14:48:21 -0800
committerJames Davidson <james.davidson@vyatta.com>2013-02-06 15:10:40 -0800
commitdc53d09decae1cd8098ee92c7c1dab72dc80ae50 (patch)
tree98cfd9ce1652fb141963705a4cb073eea0dcef2d
parent449b6c06705d5c00180206979e408d7c5230a092 (diff)
downloadvyatta-cfg-system-dc53d09decae1cd8098ee92c7c1dab72dc80ae50.tar.gz
vyatta-cfg-system-dc53d09decae1cd8098ee92c7c1dab72dc80ae50.zip
Skip biosdevname if running in Xen
Bug 8676 biosdevname does not behave well on Xen so simply skip it when running in Xen.
-rwxr-xr-xscripts/vyatta_net_name3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/vyatta_net_name b/scripts/vyatta_net_name
index ade77623..3df23adf 100755
--- a/scripts/vyatta_net_name
+++ b/scripts/vyatta_net_name
@@ -85,6 +85,9 @@ sub biosdevname {
# biosdevname works only on ethernet devices
return $ifname unless ($ifname =~ /^eth/);
+ # Don't use biosdevname in Xen
+ return $ifname if ( -d "/proc/xen" );
+
# Let the interface name changes ordered by previous invocations of this
# script complete before we call biosdevname. If we don't, biosdevame
# may generate incorrect name.