rpathsync / booty

Bootloader configuration python library used by Anaconda.

Clone this repository (size: 394.9 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/rpathsync/booty/
commit 512: 1dd930d06d9e
parent 511: 40457fab9430
branch: default
fix typo that causes anaconda crashes when using a bootloader password (RPL-2951)
Elliot Peele
14 months ago

Changed (Δ11 bytes):

raw changeset »

bootman/bman.py (1 lines added, 1 lines removed)

Up to file-list bootman/bman.py:

@@ -268,7 +268,7 @@ class BootMan(object):
268
268
269
269
        # check for user supplied password
270
270
        if self.bootloader.password:
271
            self._cfg.password(self.password)
271
            self._cfg.password(self.bootloader.password)
272
272
273
273
        # Write out bootman.conf
274
274
        self._bmcfg.write(os.path.join(instRoot, self._bmcfgfile))