diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-10-14 19:36:32 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-10-14 19:36:32 +0000 |
commit | 60a8f9866e39b0eb0f5f0e15057f36679d007522 (patch) | |
tree | e86d39f59a06ada627d57addf02b31810730853d /findpackageset.py | |
parent | 6af42d3070c2528db2c3fb47a3613e150ef1c449 (diff) | |
download | anaconda-60a8f9866e39b0eb0f5f0e15057f36679d007522.tar.gz anaconda-60a8f9866e39b0eb0f5f0e15057f36679d007522.tar.xz anaconda-60a8f9866e39b0eb0f5f0e15057f36679d007522.zip |
read product path from the build stamp if possible, default to RedHat if not
available. basically notting's patch with some fixes and genhdlist handled
Diffstat (limited to 'findpackageset.py')
-rw-r--r-- | findpackageset.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/findpackageset.py b/findpackageset.py index f4e402e10..063c98c05 100644 --- a/findpackageset.py +++ b/findpackageset.py @@ -1,5 +1,5 @@ import rpm - +from constants import * # set DB_PRIVATE to make rpm happy rpm.addMacro("__dbi_cdb", "create private mpool mp_mmapsize=16Mb mp_size=1Mb") @@ -105,7 +105,7 @@ if __name__ == "__main__": else: instPath = "/" - fd = os.open("%s/RedHat/base/hdlist" %(tree,), os.O_RDONLY) + fd = os.open("%s/%s/base/hdlist" %(tree, productPath), os.O_RDONLY) hdlist = rpm.readHeaderListFromFD(fd) os.close(fd) |