summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-16 23:43:30 +0000
committerMatt Wilson <msw@redhat.com>2001-07-16 23:43:30 +0000
commitb359ed47aa6ee7562ccd77ca7f4aef492ec4859b (patch)
tree133d6f075dd73313f285f3ee6685c98d39365067 /anaconda
parent5416b2a0a73ddc2ea0845b96325268aedea673b9 (diff)
downloadanaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.tar.gz
anaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.tar.xz
anaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.zip
autostep hack
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda5
1 files changed, 4 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index 6a297666f..bcc8099eb 100755
--- a/anaconda
+++ b/anaconda
@@ -82,7 +82,8 @@ try:
'method=', 'rootpath=', 'pcic=', "overhead=",
'testpath=', 'mountfs', 'traceonly', 'kickstart=',
'lang=', 'keymap=', 'module=', 'class=',
- 'expert', 'serial', 'lowres', 'nofb', 'rescue', 'nomount'])
+ 'expert', 'serial', 'lowres', 'nofb', 'rescue', 'nomount',
+ 'autostep'])
except TypeError, msg:
sys.stderr.write("Error %s\n:" % msg)
sys.exit(-1)
@@ -187,6 +188,8 @@ for n in args:
customClass = 'reconfig'
elif (str == '--rescue'):
progmode = 'rescue'
+ elif (str == "--autostep"):
+ flags.autostep = 1
elif (str == '-r' or str == '--rootpath'):
rootPath = arg
flags.setupFilesystems = 0