summaryrefslogtreecommitdiffstats
path: root/pyanaconda/installclass.py
diff options
context:
space:
mode:
authorAles Kozumplik <akozumpl@redhat.com>2011-06-20 14:10:04 +0200
committerAles Kozumplik <akozumpl@redhat.com>2011-06-24 08:37:52 +0200
commit97941fb18bae8252f24f7d53280d3a23e5d4e243 (patch)
tree63bb4de314e3bb0d8d38aa2ad1a026a0897f935d /pyanaconda/installclass.py
parent9e7d298e6bb6515d88430e5a259ad9d71aaa18f5 (diff)
downloadanaconda-97941fb18bae8252f24f7d53280d3a23e5d4e243.tar.gz
anaconda-97941fb18bae8252f24f7d53280d3a23e5d4e243.tar.xz
anaconda-97941fb18bae8252f24f7d53280d3a23e5d4e243.zip
Keep dracut settings in sets instead of many long strings.
This will avoid duplicities in the resulting kernel boot argument line. The patch is merged from the rhel6-branch and since bootloader.py has been overhauled the changes there are different.
Diffstat (limited to 'pyanaconda/installclass.py')
-rw-r--r--pyanaconda/installclass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/installclass.py b/pyanaconda/installclass.py
index 440b97c44..630ef7499 100644
--- a/pyanaconda/installclass.py
+++ b/pyanaconda/installclass.py
@@ -192,7 +192,7 @@ class BaseInstallClass(object):
def configure(self, anaconda):
anaconda.bootloader.timeout = self.bootloaderTimeoutDefault
- anaconda.bootloader.boot_args.extend(self.bootloaderExtraArgs)
+ anaconda.bootloader.boot_args.update(self.bootloaderExtraArgs)
def versionMatches(self, oldver):
pass