From 3300acc80dabab9184b53a182463e37c634c4696 Mon Sep 17 00:00:00 2001 From: Daniel Jakots Date: Thu, 30 Mar 2017 16:24:26 -0400 Subject: [PATCH] change tags to avoid namespace conflict; discussed with jlecour --- tasks/commit_etc_git.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/commit_etc_git.yml b/tasks/commit_etc_git.yml index 9ac99cc..820187a 100644 --- a/tasks/commit_etc_git.yml +++ b/tasks/commit_etc_git.yml @@ -8,7 +8,7 @@ when: not ansible_check_mode ignore_errors: yes tags: - - git + - commit-etc - name: /etc modifications are committed shell: "git add -A . && git commit -m \"{{ commit_message | default('Ansible run') }}\"" @@ -18,4 +18,4 @@ when: not ansible_check_mode and git_status.stdout != "" ignore_errors: yes tags: - - git + - commit-etc