mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
[PR #7709/0c7b9e50 backport][stable-6] Fix keytool setup on Debian Bookworm (#7710)
Fix keytool setup on Debian Bookworm (#7709)
Fix keytool setup on Debian Bookworm.
(cherry picked from commit 0c7b9e50b5
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
827967310e
commit
010877691a
7 changed files with 28 additions and 7 deletions
|
@ -16,11 +16,19 @@
|
|||
}}
|
||||
|
||||
- name: Include OS-specific variables
|
||||
include_vars: '{{ ansible_os_family }}.yml'
|
||||
include_vars: '{{ lookup("first_found", params) }}'
|
||||
vars:
|
||||
params:
|
||||
files:
|
||||
- '{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml'
|
||||
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
|
||||
- '{{ ansible_os_family }}.yml'
|
||||
paths:
|
||||
- '{{ role_path }}/vars'
|
||||
when: has_java_keytool
|
||||
|
||||
- name: Install keytool
|
||||
package:
|
||||
name: '{{ keytool_package_name }}'
|
||||
name: '{{ keytool_package_names }}'
|
||||
become: true
|
||||
when: has_java_keytool
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue