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:59:55 +0200
commitfbd2e28131d2bf834df883961c7eedb844bb3ebe (patch)
treebb909f45b3930b3a922ffc0866d9900726686bb8
parent242c1976aa02c5103d5b02baf8650ca360f9b5c2 (diff)
downloadanaconda-fbd2e28131d2bf834df883961c7eedb844bb3ebe.tar.gz
anaconda-fbd2e28131d2bf834df883961c7eedb844bb3ebe.tar.xz
anaconda-fbd2e28131d2bf834df883961c7eedb844bb3ebe.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 b06a28b9c..1b44ed488 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -258,7 +258,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