|
|
|
@ -8,7 +8,9 @@
|
|
|
|
|
|
|
|
|
|
- name: "evocommit /etc"
|
|
|
|
|
command: "/usr/local/bin/evocommit --ansible --repository /etc --message \"{{ commit_message | mandatory }}\""
|
|
|
|
|
changed_when: "'CHANGED:' in _etc_git_commit.stdout"
|
|
|
|
|
changed_when:
|
|
|
|
|
- _etc_git_commit.stdout
|
|
|
|
|
- "'CHANGED:' in _etc_git_commit.stdout"
|
|
|
|
|
ignore_errors: yes
|
|
|
|
|
register: _etc_git_commit
|
|
|
|
|
when:
|
|
|
|
@ -23,7 +25,9 @@
|
|
|
|
|
|
|
|
|
|
- name: "evocommit /etc/bind"
|
|
|
|
|
command: "/usr/local/bin/evocommit --ansible --repository /etc/bind --message \"{{ commit_message | mandatory }}\""
|
|
|
|
|
changed_when: "'CHANGED:' in _etc_bind_git_commit.stdout"
|
|
|
|
|
changed_when:
|
|
|
|
|
- _etc_bind_git_commit.stdout
|
|
|
|
|
- "'CHANGED:' in _etc_bind_git_commit.stdout"
|
|
|
|
|
ignore_errors: yes
|
|
|
|
|
register: _etc_bind_git_commit
|
|
|
|
|
when:
|
|
|
|
@ -38,7 +42,9 @@
|
|
|
|
|
|
|
|
|
|
- name: "evocommit /usr/share/scripts"
|
|
|
|
|
command: "/usr/local/bin/evocommit --ansible --repository /usr/share/scripts --message \"{{ commit_message | mandatory }}\""
|
|
|
|
|
changed_when: "'CHANGED:' in _usr_share_scripts_git_commit.stdout"
|
|
|
|
|
changed_when:
|
|
|
|
|
- _usr_share_scripts_git_commit.stdout
|
|
|
|
|
- "'CHANGED:' in _usr_share_scripts_git_commit.stdout"
|
|
|
|
|
ignore_errors: yes
|
|
|
|
|
register: _usr_share_scripts_git_commit
|
|
|
|
|
when:
|
|
|
|
|