diff options
author | Erik Troan <ewt@redhat.com> | 1999-05-04 16:40:06 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-05-04 16:40:06 +0000 |
commit | 2453dbf26185b884cbe47716c84ce8859452b066 (patch) | |
tree | f5c9bc6a59009d3ec0c8afda391b0e9e1f5a0823 /image.py | |
parent | dd9da1b73f090cf8a66c6354450d845c1a9dd288 (diff) | |
download | anaconda-2453dbf26185b884cbe47716c84ce8859452b066.tar.gz anaconda-2453dbf26185b884cbe47716c84ce8859452b066.tar.xz anaconda-2453dbf26185b884cbe47716c84ce8859452b066.zip |
integrated image stuff into todo
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,11 +1,15 @@ # Install method for disk image installs (CD & NFS) import rpm +from comps import ComponentSet class InstallMethod: + def readComps(self, hdlist): + return ComponentSet('i386', self.tree + '/RedHat/base/comps', hdlist) + def getFilename(self, h): - return self.tree + "/" + "RedHat/RPMS/" + h[1000000] + return self.tree + "/RedHat/RPMS/" + h[1000000] def readHeaders(self): return rpm.readHeaderList(self.tree + "/RedHat/base/hdlist") |