diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-16 23:43:30 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-16 23:43:30 +0000 |
commit | b359ed47aa6ee7562ccd77ca7f4aef492ec4859b (patch) | |
tree | 133d6f075dd73313f285f3ee6685c98d39365067 /anaconda | |
parent | 5416b2a0a73ddc2ea0845b96325268aedea673b9 (diff) | |
download | anaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.tar.gz anaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.tar.xz anaconda-b359ed47aa6ee7562ccd77ca7f4aef492ec4859b.zip |
autostep hack
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |