Merged in ITPLT-4441-fix-noto-fonts-install (pull request #225)

ITPLT-4441 install google-noto-fonts-all metapackage instead of wildcard on package name

Approved-by: Glenn Stewart
This commit is contained in:
Lee Goolsbee
2025-07-13 20:02:14 +00:00
committed by Glenn Stewart

View File

@@ -1,9 +1,15 @@
---
- name: Install Google Noto fonts for language coverage
ansible.builtin.dnf:
name:
- "google-noto-*"
block:
- name: Try to install google-noto-fonts-all package
ansible.builtin.dnf:
name:
- "google-noto-fonts-all"
rescue:
- name: Install individual google-noto packages if meta package not available
ansible.builtin.dnf:
name: "google-noto-*"
- name: Link the language fonts into the JDK
# Not idiomatic, but cleaner than messing with nested lookups...