Populate the package list of the module-package-list tag.
This commit is contained in:
parent
5f15217f0a
commit
5ebe0a8e2b
2 changed files with 14 additions and 0 deletions
|
@ -178,6 +178,15 @@
|
||||||
when: inventory_hostname.startswith('bodhi-backend01') and env == "production"
|
when: inventory_hostname.startswith('bodhi-backend01') and env == "production"
|
||||||
tags:
|
tags:
|
||||||
- bodhi
|
- bodhi
|
||||||
|
|
||||||
|
# See https://pagure.io/releng/issue/6663 and https://pagure.io/fm-orchestrator/issue/333
|
||||||
|
- name: sync packages from pkgdb2 to koji fedora (modules)
|
||||||
|
cron: name="owner-sync-modules" minute="9,19,29,39,49,59" user="root"
|
||||||
|
job="/usr/local/bin/owner-sync-pkgdb module-package-list"
|
||||||
|
cron_file=update-koji-owner-modules
|
||||||
|
when: inventory_hostname.startswith('bodhi-backend01') and env == "production"
|
||||||
|
tags:
|
||||||
|
- bodhi
|
||||||
#
|
#
|
||||||
# cron job that syncs updates to master mirror
|
# cron job that syncs updates to master mirror
|
||||||
#
|
#
|
||||||
|
|
|
@ -81,6 +81,11 @@ if __name__ == '__main__':
|
||||||
if 'docker' in tag:
|
if 'docker' in tag:
|
||||||
namespace='docker'
|
namespace='docker'
|
||||||
version = tag.split('-')[0].split('f')[1]
|
version = tag.split('-')[0].split('f')[1]
|
||||||
|
elif tag == 'module-package-list':
|
||||||
|
# See https://pagure.io/releng/issue/6663
|
||||||
|
# and https://pagure.io/fm-orchestrator/issue/333
|
||||||
|
namespace = 'rpms'
|
||||||
|
version = rawhide
|
||||||
else:
|
else:
|
||||||
namespace='rpms'
|
namespace='rpms'
|
||||||
if tag.startswith('epel'):
|
if tag.startswith('epel'):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue