etc-git-commit: check_mode compatible

This commit is contained in:
Jérémy Lecour 2017-01-11 18:18:58 +01:00 committed by Jérémy Lecour
parent 8a18cbfbb1
commit 9584a24968
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
chdir: /etc
changed_when: False
register: git_status
when: not ansible_check_mode
tags:
- git
@ -13,6 +14,6 @@
args:
chdir: /etc
register: etc_commit_end_evolinux
when: git_status.stdout != ""
when: not ansible_check_mode and git_status.stdout != ""
tags:
- git