Blame SOURCES/fedora-script-Don-t-specify-interface.patch

fef13e
From ca7b31c7b14ceffaad8589aae1006237d76b5f2e Mon Sep 17 00:00:00 2001
fef13e
From: "Zeeshan Ali (Khattak)" <zeeshanak@gnome.org>
fef13e
Date: Mon, 26 Jan 2015 16:07:24 +0000
fef13e
Subject: [PATCH] fedora,script: Don't specify interface
fef13e
fef13e
Its not guaranteed that we'll have 'eth0' available or that it will be
fef13e
named 'eth0' by kernel. Since kickstart allows us not to specify the
fef13e
name of the interface, lets omit that and let kickstart choose the best
fef13e
device for us.
fef13e
---
fef13e
 data/install-scripts/fedora.xml | 4 ++--
fef13e
 1 file changed, 2 insertions(+), 2 deletions(-)
fef13e
fef13e
diff --git a/data/install-scripts/fedora.xml b/data/install-scripts/fedora.xml
fef13e
index 76f28da..c4264e5 100644
fef13e
--- a/data/install-scripts/fedora.xml
fef13e
+++ b/data/install-scripts/fedora.xml
fef13e
@@ -104,7 +104,7 @@ langsupport --default <xsl:value-of select="config/l10n-language"/> 
fef13e
 mouse generic3ps/2 --device psaux
fef13e
 </xsl:if>
fef13e
 skipx
fef13e
-network --device eth0 --bootproto dhcp
fef13e
+network --bootproto dhcp
fef13e
 rootpw <xsl:value-of select="config/admin-password"/>
fef13e
 firewall --disabled
fef13e
 authconfig --enableshadow --enablemd5
fef13e
@@ -254,7 +254,7 @@ install
fef13e
 cdrom
fef13e
 keyboard '<xsl:call-template name="keyboard"/>'
fef13e
 lang <xsl:value-of select="config/l10n-language"/>
fef13e
-network --onboot yes --device eth0 --bootproto dhcp --noipv6 --hostname=<xsl:value-of select="config/hostname"/>
fef13e
+network --onboot yes --bootproto dhcp --noipv6 --hostname=<xsl:value-of select="config/hostname"/>
fef13e
 rootpw dummyPa55w0rd # Actual password set (or unset) in %post below
fef13e
 firewall --disabled
fef13e
 authconfig --enableshadow --enablemd5
fef13e
-- 
fef13e
2.1.0
fef13e