Commit 3f4be304 by Brian Beggs

enable logging

parent d79efc9f
......@@ -24,7 +24,7 @@
shell: git config --global fetch.prune true
become_user: "{{ repo_owner }}"
when: GIT_REPOS is defined
no_log: true
no_log: False
tags:
- install
- install:code
......@@ -34,7 +34,7 @@
msg: '{{ GIT_REPOS.PROTOCOL }} must be "https" or "ssh"'
when: (item.PROTOCOL != "https") and (item.PROTOCOL != "ssh") and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
no_log: False
tags:
- install
- install:code
......@@ -49,7 +49,7 @@
mode: "0600"
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
no_log: False
tags:
- install
- install:code
......@@ -65,7 +65,7 @@
register: code_checkout
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
no_log: False
tags:
- install
- install:code
......@@ -79,7 +79,7 @@
register: code_checkout
when: item.PROTOCOL == "https" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
no_log: False
tags:
- install
- install:code
......@@ -90,7 +90,7 @@
state: absent
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
no_log: False
tags:
- install
- install:code
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