summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2009-10-13 15:35:30 +0200
committerRadek Vykydal <rvykydal@redhat.com>2009-10-13 15:58:35 +0200
commit3d360b6abd0b4017a8265838d34ec8d1c2518251 (patch)
treeb72424edbb625ce9720b6a59ce764c6522cff846
parent9a75cc82b4356a1d80656d0ba0a36b3e5e9ed585 (diff)
downloadanaconda-3d360b6abd0b4017a8265838d34ec8d1c2518251.tar.gz
anaconda-3d360b6abd0b4017a8265838d34ec8d1c2518251.tar.xz
anaconda-3d360b6abd0b4017a8265838d34ec8d1c2518251.zip
Update drivelist with bootloader --driveorder ks option instead of replacing it (#506073).
Just update the order of drives instead of using only drives entered in --driveorder option.
-rw-r--r--kickstart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index 57f7aa3a5..8029861d8 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -257,7 +257,7 @@ class Bootloader(commands.bootloader.F12_Bootloader):
log.warning("requested drive %s in boot drive order "
"doesn't exist" %(drive,))
- self.handler.id.bootloader.drivelist = new
+ self.handler.id.bootloader.updateDriveList(new)
self.handler.permanentSkipSteps.extend(["upgbootloader", "bootloader"])
return retval