diff options
author | Matt Wilson <msw@redhat.com> | 2001-06-25 20:47:42 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-06-25 20:47:42 +0000 |
commit | 7bff3f20428d39fbd9ec4b7448bff2b2f2c91e6a (patch) | |
tree | 9d893d097e3e82a15d3450acf61f1150f230557c /anaconda | |
parent | 67ad19b7ad9d586ef045961af2c6f374ba1b3c57 (diff) | |
download | anaconda-7bff3f20428d39fbd9ec4b7448bff2b2f2c91e6a.tar.gz anaconda-7bff3f20428d39fbd9ec4b7448bff2b2f2c91e6a.tar.xz anaconda-7bff3f20428d39fbd9ec4b7448bff2b2f2c91e6a.zip |
make it possible to skip a step permanently and use that for network installs
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -530,11 +530,11 @@ instClass.setInstallData(id) dispatch = dispatch.Dispatcher(intf, id, method, rootPath) if lang: - dispatch.skipStep("language") + dispatch.skipStep("language", permanent = 1) instClass.setLanguage(id, lang) if keymap: - dispatch.skipStep("keyboard") + dispatch.skipStep("keyboard", permanent = 1) instClass.setKeyboard(id, keymap) instClass.setSteps(dispatch) |