mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 02:40:30 -07:00
minor fixes to downstream rhn install/patch download
This commit is contained in:
parent
2ce7104077
commit
bf89b1895a
2 changed files with 11 additions and 5 deletions
|
@ -100,7 +100,7 @@
|
||||||
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.split('.')[:2] | join('.') }}"
|
||||||
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) }}"
|
||||||
|
|
|
@ -3,28 +3,29 @@
|
||||||
- name: Set download patch archive path
|
- name: Set download patch archive path
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
patch_archive: "{{ keycloak_dest }}/{{ sso_patch_bundle }}"
|
patch_archive: "{{ keycloak_dest }}/{{ sso_patch_bundle }}"
|
||||||
|
when: sso_patch_version is defined
|
||||||
|
|
||||||
- name: Check download patch archive path
|
- name: Check download patch archive path
|
||||||
ansible.builtin.stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ patch_archive }}"
|
path: "{{ patch_archive }}"
|
||||||
register: patch_archive_path
|
register: patch_archive_path
|
||||||
|
when: sso_patch_version is defined
|
||||||
|
|
||||||
- name: Perform patch download from RHN via JBossNetwork API
|
- name: Perform patch download from RHN via JBossNetwork API
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
run_once: yes
|
run_once: yes
|
||||||
when:
|
when:
|
||||||
- patch_archive_path is defined
|
- patch_archive_path is defined and patch_archive_path.stat is defined and not patch_archive_path.stat.exists or patch_archive_path is not defined
|
||||||
- patch_archive_path.stat is defined
|
|
||||||
- not patch_archive_path.stat.exists
|
|
||||||
- sso_enable is defined and sso_enable
|
- sso_enable is defined and sso_enable
|
||||||
- not keycloak_offline_install
|
- not keycloak_offline_install
|
||||||
|
- sso_apply_patches
|
||||||
block:
|
block:
|
||||||
- name: Retrieve product download using JBossNetwork API
|
- name: Retrieve product download using JBossNetwork 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: BUGFIX
|
product_type: BUGFIX
|
||||||
product_version: "{{ sso_version }}"
|
product_version: "{{ sso_version.split('.')[:2] | join('.') }}"
|
||||||
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) }}"
|
||||||
|
@ -77,6 +78,11 @@
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
patch_archive: "{{ keycloak_dest }}/{{ patch_bundle }}"
|
patch_archive: "{{ keycloak_dest }}/{{ patch_bundle }}"
|
||||||
|
|
||||||
|
- name: Check download patch archive path
|
||||||
|
ansible.builtin.stat:
|
||||||
|
path: "{{ patch_archive }}"
|
||||||
|
register: patch_archive_path
|
||||||
|
|
||||||
## copy and unpack
|
## copy and unpack
|
||||||
- name: Copy patch archive to target nodes
|
- name: Copy patch archive to target nodes
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
|
Loading…
Add table
Reference in a new issue