Commit 49911496 by Saleem Latif Committed by GitHub

Merge pull request #3334 from edx/saleem-latif/SOL-2037

SOL-2037: Make sure ssh private keys are not leaked into the jenkins job logs
parents 9c7fc649 36e371f4
......@@ -24,6 +24,7 @@
shell: git config --global fetch.prune true
become_user: "{{ repo_owner }}"
when: GIT_REPOS is defined
no_log: true
tags:
- install
- install:code
......@@ -33,6 +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
tags:
- install
- install:code
......@@ -47,6 +49,7 @@
mode: "0600"
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -62,6 +65,7 @@
register: code_checkout
when: item.PROTOCOL == "ssh" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -75,6 +79,7 @@
register: code_checkout
when: item.PROTOCOL == "https" and GIT_REPOS is defined
with_items: GIT_REPOS
no_log: true
tags:
- install
- install:code
......@@ -85,6 +90,7 @@
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