In ansible 2.2 always_run is depreciated. Switch to check_mode.

This commit is contained in:
Kevin Fenzi 2016-11-01 16:29:49 +00:00
parent 1fe7e9264d
commit b1a2d105c9
67 changed files with 124 additions and 124 deletions

View file

@ -53,7 +53,7 @@
- name: Check if python-client has ever been installed
command: "python -c 'import openqa_client'"
register: instclient
always_run: true
check_mode: no
changed_when: "1 != 1"
failed_when: "1 != 1"