diff options
author | Miroslav Suchý <msuchy@redhat.com> | 2017-04-27 21:06:39 +0200 |
---|---|---|
committer | Miroslav Suchý <msuchy@redhat.com> | 2017-04-27 21:06:39 +0200 |
commit | 0fa9f54c8344e79f5d519bdfd10c6ed874d26d8d (patch) | |
tree | acc2b188a31cbd98d4522fba619ba70320ac4d89 | |
parent | 5f39bed4c82b776a8b5d5912ab0d662b3ddbd367 (diff) | |
download | ansible-0fa9f54c8344e79f5d519bdfd10c6ed874d26d8d.tar.gz ansible-0fa9f54c8344e79f5d519bdfd10c6ed874d26d8d.tar.xz ansible-0fa9f54c8344e79f5d519bdfd10c6ed874d26d8d.zip |
retrace: more cron jobs
-rw-r--r-- | roles/abrt/faf-local/tasks/cron.yml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/roles/abrt/faf-local/tasks/cron.yml b/roles/abrt/faf-local/tasks/cron.yml index f7de2a204..2165edc6a 100644 --- a/roles/abrt/faf-local/tasks/cron.yml +++ b/roles/abrt/faf-local/tasks/cron.yml @@ -61,3 +61,67 @@ - { what: "pull-releases", distro: "centos" } - { what: "pull-components", distro: "centos" } - { what: "find-components", distro: "centos" } + +- name: pull associates + cron: + name: "cron for pull associates for f{{ item }}" + user: faf + job: "faf pull-associates -o fedora --opsys-release {{ item }} >> /var/log/faf/pull-associates-f{{ item }}.log 2>&1" + special_time: monthly + state: present + when: not devel + with_items: + - "24" + - "25" + - "26" + +- name: koops_to_xorg.py + cron: + name: "koops_to_xorg.py" + user: faf + job: "/etc/faf/koops_to_xorg.py >> /var/log/faf/koops-to-xorg.log" + special_time: daily + state: present + when: not devel + +- name: probable fixes + cron: + name: "cron for probable fixes for f{{ item }}" + user: faf + job: "faf mark-probably-fixed -o fedora --opsys-release {{ item }} >> /var/log/faf/mark-probably-fixed-f{{ item }}.log 2>&1" + special_time: daily + state: present + when: not devel + with_items: + - "24" + - "25" + - "26" + +- name: update BZ bugs fedora + cron: + name: "cron for update BZ bugs fedora" + user: faf + job: "faf update-bugs -db fedora-bugzilla >> /var/log/faf/update-bugs.log 2>&1" + special_time: daily + state: present + when: not devel + +- name: update BZ bugs centos + cron: + name: "cron for update BZ bugs centos" + user: faf + job: "faf update-bugs -db centos-mantisbt >> /var/log/faf/update-bugs-centos.log 2>&1" + special_time: daily + state: present + when: not devel + +- name: attach BZ bugs centos + cron: + name: "cron for attach BZ bugs centos" + user: faf + job: "faf update-bugs -db centos-mantisbt >> /var/log/faf/update-bugs-centos.log 2>&1" + special_time: daily + state: present + when: not devel + + |