summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-05-21 19:40:38 +0000
committerMike Fulbright <msf@redhat.com>2003-05-21 19:40:38 +0000
commit8e611a869a8a26be860f6a28f66a1d23937af126 (patch)
treeb95868647114b5a775d9352a92d0f5c6d58045c1
parentc6be99800c2f42f8d17ea6393c9d48083edc295b (diff)
downloadanaconda-8e611a869a8a26be860f6a28f66a1d23937af126.tar.gz
anaconda-8e611a869a8a26be860f6a28f66a1d23937af126.tar.xz
anaconda-8e611a869a8a26be860f6a28f66a1d23937af126.zip
fix autostep for monitor probe
-rw-r--r--kickstart.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/kickstart.py b/kickstart.py
index 03d203178..0c7b09a12 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1148,9 +1148,16 @@ class KickstartBase(BaseInstallClass):
dispatch.skipStep("partitionmethodsetup")
dispatch.skipStep("fdisk")
dispatch.skipStep("autopartition")
- dispatch.skipStep("bootdisk")
+ dispatch.skipStep("bootdisk")
+
+ # because these steps depend on the monitor being probed
+ # properly, and will stop you if you have an unprobed monitor,
+ # we should skip them for autostep
+ if flags.autostep:
+ dispatch.skipStep("checkmonitorok")
+ dispatch.skipStep("monitor")
return
-
+
dispatch.skipStep("bootdisk")
dispatch.skipStep("welcome")
dispatch.skipStep("betanag")