summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-12 15:51:43 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-12 15:51:43 +0000
commitd5f16a1c3ed9549f9b34a15a1d12c15300461831 (patch)
treec558c811b0ff525ca91875948c9d4594b4b1343a /rescue.py
parent8e75e9735fb353ea9899050fae6c0b3f249cb35d (diff)
downloadanaconda-d5f16a1c3ed9549f9b34a15a1d12c15300461831.tar.gz
anaconda-d5f16a1c3ed9549f9b34a15a1d12c15300461831.tar.xz
anaconda-d5f16a1c3ed9549f9b34a15a1d12c15300461831.zip
2005-04-12 Jeremy Katz <katzj@redhat.com>
* rescue.py (runRescue): Fix rescue mode network enabling (#153961)
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rescue.py b/rescue.py
index b0d83431a..496fb8470 100644
--- a/rescue.py
+++ b/rescue.py
@@ -203,9 +203,9 @@ def runRescue(instPath, mountroot, id):
win = nextWindow()
if classNames[step] == "NetworkDeviceWindow":
- args = (id.network, dir, intf, 0)
+ args = (id.network, dir, intf, None, 0)
else:
- args = (id.network, dir, intf)
+ args = (id.network, dir, intf, None)
rc = apply(win, (screen, ) + args)
if rc == INSTALL_NOOP: