mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-04-06 10:50:31 -07:00
Fix typo
This commit is contained in:
parent
ccf773057b
commit
527d3eb264
2 changed files with 4 additions and 4 deletions
|
@ -333,11 +333,11 @@ argument_specs:
|
||||||
description: "systemd description for Red Hat Single Sign-On"
|
description: "systemd description for Red Hat Single Sign-On"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_patch_version:
|
sso_patch_version:
|
||||||
default: "7.6.1"
|
required: False
|
||||||
description: "Red Hat Single Sign-On latest cumulative patch version"
|
description: "Red Hat Single Sign-On latest cumulative patch version to apply; default to latest version when sso_apply_patches is True"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_patch_bundle:
|
sso_patch_bundle:
|
||||||
default: "rh-sso-{{ sso_patch_version }}-patch.zip"
|
default: "rh-sso-{{ sso_patch_version | default('') }}-patch.zip"
|
||||||
description: "Red Hat SSO patch archive filename"
|
description: "Red Hat SSO patch archive filename"
|
||||||
type: "str"
|
type: "str"
|
||||||
sso_product_category:
|
sso_product_category:
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
|
|
||||||
- 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
|
||||||

|

|
||||||
|
|
Loading…
Add table
Reference in a new issue