summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-10-26 21:26:33 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-10-26 21:26:33 -1000
commit900bd25ef49fcf3cc7c9d4609509e6e8cb2520ed (patch)
tree22982857f375667753d8bf9326eee082f1617e2d /instdata.py
parent683d104199938c8901f1231dbad5ffb267597185 (diff)
downloadanaconda-900bd25ef49fcf3cc7c9d4609509e6e8cb2520ed.tar.gz
anaconda-900bd25ef49fcf3cc7c9d4609509e6e8cb2520ed.tar.xz
anaconda-900bd25ef49fcf3cc7c9d4609509e6e8cb2520ed.zip
Fix traceback in network.bringUp() (#468651)
Let network.bringUp() work by calling network.write() with no parameters. bringUp() is used to bring up networking during installation.
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/instdata.py b/instdata.py
index 4c579c919..7e64b06f1 100644
--- a/instdata.py
+++ b/instdata.py
@@ -191,7 +191,8 @@ class InstallData:
except RuntimeError, msg:
log.error("Error running %s: %s", args, msg)
- self.network.write (self.anaconda.rootPath, self.anaconda)
+ self.network.write (instPath=self.anaconda.rootPath,
+ anaconda=self.anaconda)
self.firewall.write (self.anaconda.rootPath)
self.security.write (self.anaconda.rootPath)
self.desktop.write(self.anaconda.rootPath)