Commit bdd3ec2d by Kevin Falcone

Log what repo we're going to clone

parent 8fb12737
...@@ -20,6 +20,13 @@ ...@@ -20,6 +20,13 @@
# Rewrite this task using the ansible git-config module once we'll migrate to Ansible 2.x # Rewrite this task using the ansible git-config module once we'll migrate to Ansible 2.x
# https://docs.ansible.com/ansible/git_config_module.html#git-config # https://docs.ansible.com/ansible/git_config_module.html#git-config
# #
- name: What is being git cloned
debug:
msg: "{{ item.PROTOCOL }} {{item.DOMAIN }} {{ item.PATH }} {{ item.REPO }}"
when: GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
- name: Set git fetch.prune to ignore deleted remote refs - name: Set git fetch.prune to ignore deleted remote refs
shell: git config --global fetch.prune true shell: git config --global fetch.prune true
become_user: "{{ repo_owner }}" become_user: "{{ repo_owner }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment