diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-01 15:40:53 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-01 15:40:53 +0000 |
commit | a959970e6206eae832034f4da3714f10633c99f6 (patch) | |
tree | bfd1c96e986ee7daddd0d2aacf6cbc902e6378fd /lilo.py | |
parent | f040520935cc9ef345bb30f95e25a4e7e6b1b676 (diff) | |
download | anaconda-a959970e6206eae832034f4da3714f10633c99f6.tar.gz anaconda-a959970e6206eae832034f4da3714f10633c99f6.tar.xz anaconda-a959970e6206eae832034f4da3714f10633c99f6.zip |
fixed a couple of minor think-o's
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -209,14 +209,14 @@ class LiloConfiguration: return if not self.liloImages: - self.setLiloImages(self.getLiloImages()) + self.setLiloImages(self.getLiloImages(fstab)) # on upgrade read in the lilo config file lilo = LiloConfigFile () if os.access (instRoot + '/etc/lilo.conf', os.R_OK): + lilo.read (instRoot + '/etc/lilo.conf') os.rename(instRoot + '/etc/lilo.conf', instRoot + '/etc/lilo.conf.rpmsave') - lilo.read (instRoot + '/etc/lilo.conf') # Remove any invalid entries that are in the file; we probably # just removed those kernels. While we're here, build an index |