Skip to content

Commit

Permalink
Merge pull request #184 from avskor/issue-125
Browse files Browse the repository at this point in the history
Fix permissions on controller-side downloaded artifacts
  • Loading branch information
guidograzioli authored Apr 8, 2024
2 parents 4421375 + c2e456e commit 7dceb7f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions roles/keycloak_quarkus/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,15 @@
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
url: "{{ keycloak_quarkus_download_url }}"
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
mode: 0640
delegate_to: localhost
become: false
run_once: true
when:
- archive_path is defined
Expand Down

0 comments on commit 7dceb7f

Please sign in to comment.