Commit 22a3d1c4 by Kevin Falcone Committed by GitHub

Revert "SOL-2037: Make sure ssh private keys are not leaked into the jenkins job logs"

parent 49911496
......@@ -24,7 +24,6 @@
shell: git config --global fetch.prune true
become_user: "{{ repo_owner }}"
when: GIT_REPOS is defined
no_log: true
tags:
- install
- install:code
......@@ -34,7 +33,6 @@
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
tags:
- install
- install:code
......@@ -49,7 +47,6 @@
mode: "0600"
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -65,7 +62,6 @@
register: code_checkout
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -79,7 +75,6 @@
register: code_checkout
when: item.PROTOCOL == "https" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -90,7 +85,6 @@
state: absent
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
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