diff options
author | Chris Lumens <clumens@redhat.com> | 2006-02-03 21:39:16 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-02-03 21:39:16 +0000 |
commit | e6694b222de8356b3b0aaa9a41a96d00322f9520 (patch) | |
tree | 5ed49eb3eb54afca1558c110e89c35b0a564ef95 /dispatch.py | |
parent | 4c044e92eae44297e5473181887229e62805b773 (diff) | |
download | anaconda-e6694b222de8356b3b0aaa9a41a96d00322f9520.tar.gz anaconda-e6694b222de8356b3b0aaa9a41a96d00322f9520.tar.xz anaconda-e6694b222de8356b3b0aaa9a41a96d00322f9520.zip |
Fix arguments to writeConfiguration (#179928).
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py index 6bfb14ed5..184d5d5a5 100644 --- a/dispatch.py +++ b/dispatch.py @@ -120,7 +120,7 @@ installSteps = [ ("preinstallconfig", doPreInstall, ("backend", "intf", "id", "instPath", "dir")), ("installpackages", doInstall, ("backend", "intf", "id", "instPath")), ("postinstallconfig", doPostInstall, ("backend", "intf", "id", "instPath")), - ("writeconfig", writeConfiguration, ("id", "instPath")), + ("writeconfig", writeConfiguration, ("backend")), ("firstboot", firstbootConfiguration, ("id", "instPath")), ("instbootloader", writeBootloader, ("intf", "instPath", "id.fsset", "id.bootloader", "id.instLanguage", |