summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-08-21 01:06:07 +0000
committerErik Troan <ewt@redhat.com>1999-08-21 01:06:07 +0000
commitbdbd1d9aa91b10369878b153d59d9d6b41ac297d (patch)
treeb9b9b11948babe8b5f06d38a63eb1a1a5c8a5cbf /image.py
parent2b7630feb3e402da7732c9fc7de55a9b998b7df0 (diff)
downloadanaconda-bdbd1d9aa91b10369878b153d59d9d6b41ac297d.tar.gz
anaconda-bdbd1d9aa91b10369878b153d59d9d6b41ac297d.tar.xz
anaconda-bdbd1d9aa91b10369878b153d59d9d6b41ac297d.zip
added some stubs
Diffstat (limited to 'image.py')
-rw-r--r--image.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/image.py b/image.py
index 346ffc23b..31b1fb1f2 100644
--- a/image.py
+++ b/image.py
@@ -1,6 +1,6 @@
# Install method for disk image installs (CD & NFS)
-from comps import ComponentSet, HeaderList
+from comps import ComponentSet, HeaderListFromFile
class InstallMethod:
@@ -11,7 +11,7 @@ class InstallMethod:
return self.tree + "/RedHat/RPMS/" + h[1000000]
def readHeaders(self):
- return HeaderList(self.tree + "/RedHat/base/hdlist")
+ return HeaderListFromFile(self.tree + "/RedHat/base/hdlist")
def targetFstab(self, fstab):
pass
@@ -19,5 +19,8 @@ class InstallMethod:
def filesDone(self):
pass
+ def unlinkFilename(self, fullName):
+ pass
+
def __init__(self, tree):
self.tree = tree