summaryrefslogtreecommitdiffstats
path: root/silo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-05 20:29:44 +0000
committerMatt Wilson <msw@redhat.com>2000-02-05 20:29:44 +0000
commit8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed (patch)
tree432f76d709ceb47621b72bed4701743c90d4e61b /silo.py
parent6e55a6b4d70e5ca604ebe644d08cf8e129ef916c (diff)
downloadanaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.tar.gz
anaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.tar.xz
anaconda-8599d3cd65e47a0941d97d39f9f96ebf20d7b6ed.zip
argh! more LiloConfigFile() stuff!
Diffstat (limited to 'silo.py')
-rw-r--r--silo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/silo.py b/silo.py
index bdc32b9ee..c60411dcf 100644
--- a/silo.py
+++ b/silo.py
@@ -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)