mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-09-29 21:13:31 -07:00
Comprehensive linter warning fixes
This commit is contained in:
parent
d17c364257
commit
1f910bd400
17 changed files with 62 additions and 41 deletions
|
@ -25,7 +25,7 @@
|
|||
fail_msg: "sudo is not installed on target system"
|
||||
|
||||
- name: "Install iproute"
|
||||
become: yes
|
||||
become: true
|
||||
ansible.builtin.yum:
|
||||
name:
|
||||
- iproute
|
||||
|
@ -33,7 +33,7 @@
|
|||
|
||||
- name: "Retrieve assets server from env"
|
||||
ansible.builtin.set_fact:
|
||||
assets_server: "{{ lookup('env','MIDDLEWARE_DOWNLOAD_RELEASE_SERVER_URL') }}"
|
||||
assets_server: "{{ lookup('env', 'MIDDLEWARE_DOWNLOAD_RELEASE_SERVER_URL') }}"
|
||||
|
||||
- name: "Download artefacts only if assets_server is set"
|
||||
when:
|
||||
|
@ -51,6 +51,7 @@
|
|||
url: "{{ asset }}"
|
||||
dest: "{{ lookup('env', 'PWD') }}"
|
||||
validate_certs: no
|
||||
mode: '0644'
|
||||
delegate_to: localhost
|
||||
loop: "{{ assets }}"
|
||||
loop_control:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue