summaryrefslogtreecommitdiffstats
path: root/roles/openqa/server/tasks
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2016-11-01 16:29:49 +0000
committerKevin Fenzi <kevin@scrye.com>2016-11-01 16:29:49 +0000
commitb1a2d105c9727e9713ec0b00c1b04fcac77fcddc (patch)
treedf88db8f22498635499b75bc1db895a6921db712 /roles/openqa/server/tasks
parent1fe7e9264d2e7fdc45e97060dc04d9e5867a50e3 (diff)
downloadansible-b1a2d105c9727e9713ec0b00c1b04fcac77fcddc.tar.gz
ansible-b1a2d105c9727e9713ec0b00c1b04fcac77fcddc.tar.xz
ansible-b1a2d105c9727e9713ec0b00c1b04fcac77fcddc.zip
In ansible 2.2 always_run is depreciated. Switch to check_mode.
Diffstat (limited to 'roles/openqa/server/tasks')
-rw-r--r--roles/openqa/server/tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openqa/server/tasks/main.yml b/roles/openqa/server/tasks/main.yml
index 93a6b8218..2fdd0e91f 100644
--- a/roles/openqa/server/tasks/main.yml
+++ b/roles/openqa/server/tasks/main.yml
@@ -106,7 +106,7 @@
register: testsbranch
failed_when: "1 != 1"
changed_when: "1 != 1"
- always_run: true
+ check_mode: no
- name: Check out the tests
git:
@@ -142,7 +142,7 @@
register: diskcheck
failed_when: "1 != 1"
changed_when: "1 != 1"
- always_run: true
+ check_mode: no
- name: Ensure libvirt is running if needed to create images
service: name=libvirtd enabled=yes state=started