Fix for Ansible < 2.1

This commit is contained in:
Jérémy Lecour 2017-02-02 15:39:25 +01:00 committed by Jérémy Lecour
parent f0aaf767ec
commit 5bbc9caa4f
1 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,9 @@
chdir: /etc
changed_when: False
register: git_status
when: not ansible_check_mode
# Use this with Ansible 2.1+
#when: not ansible_check_mod
always_run: yes
tags:
- git
@ -14,6 +16,8 @@
args:
chdir: /etc
register: etc_commit_end_evolinux
when: not ansible_check_mode and git_status.stdout != ""
# Use this with Ansible 2.1+
#when: not ansible_check_mode and git_status.stdout != ""
when: git_status.stdout != ""
tags:
- git