Fix keytool setup on Debian Bookworm (#7709)

Fix keytool setup on Debian Bookworm.
This commit is contained in:
Felix Fontein 2023-12-09 23:47:48 +01:00 committed by GitHub
commit 0c7b9e50b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 28 additions and 7 deletions

View file

@ -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