This commit is contained in:
Guido Grazioli 2023-03-08 16:02:54 +01:00
parent ccf773057b
commit 527d3eb264
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B
2 changed files with 4 additions and 4 deletions

View file

@ -333,11 +333,11 @@ argument_specs:
description: "systemd description for Red Hat Single Sign-On"
type: "str"
sso_patch_version:
default: "7.6.1"
description: "Red Hat Single Sign-On latest cumulative patch version"
required: False
description: "Red Hat Single Sign-On latest cumulative patch version to apply; default to latest version when sso_apply_patches is True"
type: "str"
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"
type: "str"
sso_product_category:

View file

@ -109,7 +109,7 @@
- name: Determine install zipfile from search results
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
run_once: yes