[PATCH] Skip network.execute for dirInstall

Brian C. Lane bcl at redhat.com
Tue Jun 25 20:59:31 UTC 2013


From: "Brian C. Lane" <bcl at redhat.com>

---
 pyanaconda/install.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/install.py b/pyanaconda/install.py
index 43be542..19cc8a6 100644
--- a/pyanaconda/install.py
+++ b/pyanaconda/install.py
@@ -73,7 +73,7 @@ def doConfiguration(storage, payload, ksdata, instClass):
         ksdata.firewall.execute(storage, ksdata, instClass)
         ksdata.xconfig.execute(storage, ksdata, instClass)
 
-    if not flags.flags.imageInstall:
+    if not flags.flags.imageInstall and not flags.flags.dirInstall:
         with progress_report(_("Writing network configuration")):
             ksdata.network.execute(storage, ksdata, instClass)
 
-- 
1.8.1.4



More information about the anaconda-patches mailing list