Merge pull request #184 from avskor/issue-125

Fix permissions on controller-side downloaded artifacts
This commit is contained in:
Guido Grazioli 2024-04-08 09:15:52 +02:00 committed by GitHub
commit 7dceb7f819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,6 +50,7 @@
path: "{{ lookup('env', 'PWD') }}"
register: local_path
delegate_to: localhost
become: false
- name: Download keycloak archive
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
@ -57,6 +58,7 @@
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
mode: 0640
delegate_to: localhost
become: false
run_once: true
when:
- archive_path is defined