mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-09 04:10:27 -07:00
fix indent typo
This commit is contained in:
parent
527d3eb264
commit
d15324c1c8
1 changed files with 13 additions and 13 deletions
|
@ -98,10 +98,10 @@
|
||||||
- name: Retrieve product download using JBoss Network API
|
- name: Retrieve product download using JBoss Network API
|
||||||
middleware_automation.common.product_search:
|
middleware_automation.common.product_search:
|
||||||
client_id: "{{ rhn_username }}"
|
client_id: "{{ rhn_username }}"
|
||||||
 client_secret: "{{ rhn_password }}"
|
client_secret: "{{ rhn_password }}"
|
||||||
 product_type: DISTRIBUTION
|
product_type: DISTRIBUTION
|
||||||
product_version: "{{ sso_version }}"
|
product_version: "{{ sso_version }}"
|
||||||
 product_category: "{{ sso_product_category }}"
|
product_category: "{{ sso_product_category }}"
|
||||||
register: rhn_products
|
register: rhn_products
|
||||||
no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
@ -110,18 +110,18 @@
|
||||||
- name: Determine install zipfile from search results
|
- name: Determine install zipfile from search results
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_path', 'match', '[^/]*/' + sso_archive + '$') }}"
|
rhn_filtered_products: "{{ rhn_products.results | selectattr('file_path', 'match', '[^/]*/' + sso_archive + '$') }}"
|
||||||
 delegate_to: localhost
|
delegate_to: localhost
|
||||||
 run_once: yes
|
run_once: yes
|
||||||

|
|
||||||
- name: Download Red Hat Single Sign-On
|
- name: Download Red Hat Single Sign-On
|
||||||
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
middleware_automation.common.product_download: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
 client_id: "{{ rhn_username }}"
|
client_id: "{{ rhn_username }}"
|
||||||
 client_secret: "{{ rhn_password }}"
|
client_secret: "{{ rhn_password }}"
|
||||||
 product_id: "{{ (rhn_filtered_products | first).id }}"
|
product_id: "{{ (rhn_filtered_products | first).id }}"
|
||||||
 dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
dest: "{{ local_path.stat.path }}/{{ keycloak.bundle }}"
|
||||||
 no_log: "{{ omit_rhn_output | default(true) }}"
|
no_log: "{{ omit_rhn_output | default(true) }}"
|
||||||
 delegate_to: localhost
|
delegate_to: localhost
|
||||||
 run_once: yes
|
run_once: yes
|
||||||
|
|
||||||
- name: Download rhsso archive from alternate location
|
- name: Download rhsso archive from alternate location
|
||||||
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
ansible.builtin.get_url: # noqa risky-file-permissions delegated, uses controller host user
|
||||||
|
|
Loading…
Add table
Reference in a new issue