summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")