treat kickstarts as artifacts

This commit is contained in:
Jay Greguske 2014-02-18 14:12:14 -05:00 committed by Mike McLean
parent 633a82c283
commit 74233fc888
2 changed files with 8 additions and 4 deletions

View file

@ -2897,13 +2897,14 @@ class BaseImageTask(OzImageTask):
imgdata = {
'arch': arch,
'task_id': self.id,
'logs': [ozlogname, os.path.basename(kspath),
os.path.basename(kskoji)],
'logs': [ozlogname],
'name': name,
'version': version,
'release': release,
'rpmlist': [],
'files': [os.path.basename(tdl_path)]
'files': [os.path.basename(tdl_path),
os.path.basename(kspath),
os.path.basename(kskoji)]
}
# record the RPMs that were installed
if not opts.get('scratch'):