Make a copy of the packages/ role to mess with in staging.

This commit is contained in:
Ralph Bean 2015-11-17 15:47:33 +00:00
parent c5f75b721e
commit 927bea9201
16 changed files with 890 additions and 4 deletions

View file

@ -0,0 +1,28 @@
# Global list of koji tags we care about
tags = ({'name': 'Rawhide', 'tag': 'f24'},
{'name': 'Fedora 23', 'tag': 'f23:updates'},
{'name': 'Fedora 23', 'tag': 'f23'},
{'name': 'Fedora 23 Testing', 'tag': 'f23-updates-testing'},
{'name': 'Fedora 22', 'tag': 'f22-updates'},
{'name': 'Fedora 22', 'tag': 'f22'},
{'name': 'Fedora 22 Testing', 'tag': 'f22-updates-testing'},
{'name': 'Fedora 21', 'tag': 'f21-updates'},
{'name': 'Fedora 21', 'tag': 'f21'},
{'name': 'Fedora 21 Testing', 'tag': 'f21-updates-testing'},
{'name': 'EPEL 7', 'tag': 'epel7'},
{'name': 'EPEL 7 Testing', 'tag': 'epel7-testing'},
{'name': 'EPEL 6', 'tag': 'dist-6E-epel'},
{'name': 'EPEL 6 Testing', 'tag': 'dist-6E-epel-testing'},
{'name': 'EPEL 5', 'tag': 'dist-5E-epel'},
{'name': 'EPEL 5 Testing', 'tag': 'dist-5E-epel-testing'},
)
tags_to_name_map = {}
for t in tags:
tags_to_name_map[t['tag']] = t['name']