From 0e20a588bf6b99c537b1f0f0fb8dde6e131fd3e7 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 7 Mar 2017 11:32:32 -0800 Subject: [PATCH] openqa/server: allow createhdds to fail It does, sometimes, and that probably shouldn't stop the play. We likely already have some older images, and even if this is the *first* creation, we can go ahead with the rest of the deployment safely enough, and debug the image creation problem later. --- roles/openqa/server/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/openqa/server/tasks/main.yml b/roles/openqa/server/tasks/main.yml index 650237386d..38b35f3c11 100644 --- a/roles/openqa/server/tasks/main.yml +++ b/roles/openqa/server/tasks/main.yml @@ -161,6 +161,7 @@ - name: Create hard disk images (this may take a long time!) command: "/etc/cron.daily/createhdds" when: "diskcheck.rc > 1" + ignore_errors: yes - name: Create exports file copy: src=exports dest=/etc/exports.d/openqa.exports owner=root group=root mode=0644