Replace always_run with check_mode
always_run was deprecated in Ansible 2.2 and will be removed in 2.4 ansible logs contain "[DEPRECATION WARNING]: always_run is deprecated. Use check_mode = no instead". This patch fix deprecation.pull/1021/head
parent
2f0f0006e3
commit
5f4cc3e1de
|
@ -10,7 +10,7 @@
|
|||
- name: 'GIT | generate git informations'
|
||||
local_action: command {{ role_path }}/gen-gitinfos.sh global
|
||||
register: gitinfo
|
||||
always_run: yes
|
||||
check_mode: no
|
||||
|
||||
- name: 'GIT | copy ansible information'
|
||||
template:
|
||||
|
@ -21,7 +21,7 @@
|
|||
- name: 'GIT | generate diff file'
|
||||
local_action: command {{ role_path }}/gen-gitinfos.sh diff
|
||||
register: gitdiff
|
||||
always_run: yes
|
||||
check_mode: no
|
||||
|
||||
- name: 'GIT | copy git diff file'
|
||||
copy:
|
||||
|
|
Loading…
Reference in New Issue