diff options
author | Matt Wilson <msw@redhat.com> | 2001-06-26 02:38:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-06-26 02:38:54 +0000 |
commit | 4f09d509be8bb2d2f7180e9761eb5e3c0a851caa (patch) | |
tree | f9e24cebaea567ea3452bd5d70a4ed58ad8eb584 /dispatch.py | |
parent | f62974449f602ba08fc90d57ff96bd701468cc3a (diff) | |
download | anaconda-4f09d509be8bb2d2f7180e9761eb5e3c0a851caa.tar.gz anaconda-4f09d509be8bb2d2f7180e9761eb5e3c0a851caa.tar.xz anaconda-4f09d509be8bb2d2f7180e9761eb5e3c0a851caa.zip |
make the bootdisk before setting up X, just in case something goes wrong
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 d418384ad..4624a4c49 100644 --- a/dispatch.py +++ b/dispatch.py @@ -88,12 +88,12 @@ installSteps = [ ( "instbootloader", writeBootloader, ("intf", "instPath", "id.fsset", "id.bootloader", "id.langSupport", "id.comps") ), + ( "bootdisk", ("dir", "dispatch") ), ( "monitor", ("id.xconfig", "id.monitor") ), ( "xcustom", ("id.xconfig", "id.monitor", "id.videocard", "id.desktop", "id.comps") ), ( "writexconfig", writeXConfiguration, ("id", "instPath")), ( "writeksconfig", writeKSConfiguration, ("id", "instPath")), - ( "bootdisk", ("dir", "dispatch") ), ( "makebootdisk", makeBootdisk, ("intf", "id.floppyDevice", "id.hdList", "instPath") ), ( "complete", () ), |