diff options
author | Kevin Fenzi <kevin@scrye.com> | 2017-08-15 00:08:57 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2017-08-15 00:08:57 +0000 |
commit | cc3c523ef117e64a6a095168a30f598d11a3cd3f (patch) | |
tree | 9753275e361ef27bddfa5e74e8cd5c59fbb3f53c | |
parent | f34144ef52157da01508bd8ca443d63606561b3a (diff) | |
download | ansible-cc3c523ef117e64a6a095168a30f598d11a3cd3f.tar.gz ansible-cc3c523ef117e64a6a095168a30f598d11a3cd3f.tar.xz ansible-cc3c523ef117e64a6a095168a30f598d11a3cd3f.zip |
switch this cron job to once per hour until we can figure out how to make it quicker. (takes around 30min to run now).
-rw-r--r-- | roles/bodhi2/backend/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/bodhi2/backend/tasks/main.yml b/roles/bodhi2/backend/tasks/main.yml index 7afce5c4c..a5de8b7f9 100644 --- a/roles/bodhi2/backend/tasks/main.yml +++ b/roles/bodhi2/backend/tasks/main.yml @@ -160,7 +160,7 @@ - cron - name: sync packages from pagure-on-dist-git to koji (all branches) - cron: name="owner-sync" minute="7,17,27,37,47,57" user="root" + cron: name="owner-sync" minute="15" user="root" job="/usr/local/bin/lock-wrapper owner-sync '/usr/local/bin/owner-sync-pagure f27 f26 f25 f27-container f26-container f25-container epel7 dist-6E-epel module-package-list'" cron_file=update-koji-owner when: inventory_hostname.startswith('bodhi-backend01') and env == "production" |