summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-07-26 14:55:52 +0000
committerJeremy Katz <katzj@redhat.com>2006-07-26 14:55:52 +0000
commit0a3c51d6e1dd08b538d115cfa8b79bbb6770d0fc (patch)
treec3c86c879ccd5df424880e022e089cefe60caf43
parentf8e55682f1444319218a25d8a9d628a176e47842 (diff)
downloadanaconda-0a3c51d6e1dd08b538d115cfa8b79bbb6770d0fc.tar.gz
anaconda-0a3c51d6e1dd08b538d115cfa8b79bbb6770d0fc.tar.xz
anaconda-0a3c51d6e1dd08b538d115cfa8b79bbb6770d0fc.zip
2006-07-26 Jeremy Katz <katzj@redhat.com>
* rescue.py (runRescue): Don't show onboot for rescue (#200237) * textw/network_text.py (NetworkGlobalWindow.__call__): Take (unused and optional) showonboot parameter
-rw-r--r--rescue.py2
-rw-r--r--textw/network_text.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/rescue.py b/rescue.py
index 841d2056b..8031c30a3 100644
--- a/rescue.py
+++ b/rescue.py
@@ -223,7 +223,7 @@ def runRescue(anaconda):
win = nextWindow()
- rc = win(screen, anaconda)
+ rc = win(screen, anaconda, showonboot = 0)
if rc == INSTALL_NOOP:
rc = lastrc
diff --git a/textw/network_text.py b/textw/network_text.py
index 83b54df6a..5cf6c1ed0 100644
--- a/textw/network_text.py
+++ b/textw/network_text.py
@@ -232,7 +232,7 @@ class NetworkDeviceWindow:
return INSTALL_OK
class NetworkGlobalWindow:
- def __call__(self, screen, anaconda):
+ def __call__(self, screen, anaconda, showonboot = 1):
devices = anaconda.id.network.available()
if not devices:
return INSTALL_NOOP