openqa: disable createhdds cron jobs (#1539330)

Yeah, daily crashes are bad.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2018-01-28 01:08:44 +01:00
parent 571ca7275a
commit 69ed1bb554
2 changed files with 14 additions and 4 deletions

View file

@ -142,8 +142,13 @@
- /var/lib/openqa/share/factory/repo
- /var/lib/openqa/share/factory/other
- name: Set up createhdds cron job
copy: src=createhdds dest=/etc/cron.daily/createhdds owner=root group=root mode=0755
#- name: Set up createhdds cron job
# copy: src=createhdds dest=/etc/cron.daily/createhdds owner=root group=root mode=0755
# While #1539330 is a thing, we probably don't want the servers
# crashing every day...
- name: Remove createhdds cron job (#1539330)
file: path=/etc/cron.daily/createhdds state=absent
- name: Check if any hard disk images need (re)building
command: "/root/createhdds/createhdds.py check"

View file

@ -39,8 +39,13 @@
repo: https://pagure.io/fedora-qa/createhdds.git
dest: /root/createhdds
- name: Set up createhdds cron job
copy: src=createhdds dest=/etc/cron.daily/createhdds owner=root group=root mode=0755
#- name: Set up createhdds cron job
# copy: src=createhdds dest=/etc/cron.daily/createhdds owner=root group=root mode=0755
# While #1539330 is a thing, we probably don't want these boxes
# crashing every day...
- name: Remove createhdds cron job (#1539330)
file: path=/etc/cron.daily/createhdds state=absent
- name: Check if any hard disk images need (re)building
command: "/root/createhdds/createhdds.py check"