diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-05 20:29:44 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-05 20:29:44 +0000 |
commit | 8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed (patch) | |
tree | 432f76d709ceb47621b72bed4701743c90d4e61b /silo.py | |
parent | 6e55a6b4d70e5ca604ebe644d08cf8e129ef916c (diff) | |
download | anaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.tar.gz anaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.tar.xz anaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.zip |
argh! more LiloConfigFile() stuff!
Diffstat (limited to 'silo.py')
-rw-r--r-- | silo.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -280,7 +280,7 @@ class SiloInstall: kernelFile = "/vmlinuz" + kernelTag initrdFile = initrd[5:] - sl = LiloConfiguration() + sl = LiloConfigFile() sl.addEntry("label", label) if os.access (instRoot + initrd, os.R_OK): @@ -292,7 +292,7 @@ class SiloInstall: silo.addImage ("image", kernelFile, sl) for (label, device) in otherList: - sl = LiloConfiguration() + sl = LiloConfigFile() sl.addEntry("label", label) silo.addImage ("other", device, sl) |