summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-05-16 14:55:24 +0000
committerMike Fulbright <msf@redhat.com>2003-05-16 14:55:24 +0000
commit6154f9bc3e2532fa992c304a3b564d7533e63416 (patch)
treea6647a27ff791485c204543270a574f0cf416b48 /kickstart.py
parent1cfaf749874aba4180d59d3d7a6dbddf51b50c76 (diff)
downloadanaconda-6154f9bc3e2532fa992c304a3b564d7533e63416.tar.gz
anaconda-6154f9bc3e2532fa992c304a3b564d7533e63416.tar.xz
anaconda-6154f9bc3e2532fa992c304a3b564d7533e63416.zip
oops forgot to skip these steps if they specified skipx in ks file
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index f3fcba7a4..4391c6402 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -516,6 +516,8 @@ class KickstartBase(BaseInstallClass):
self.skipSteps.append("complete")
def doSkipX(self, id, args):
+ self.skipSteps.append("checkmonitorok")
+ self.skipSteps.append("setsanex")
self.skipSteps.append("videocard")
self.skipSteps.append("monitor")
self.skipSteps.append("xcustom")