Files
dc-deployments-automation/roles/confluence_config/tasks/amazon_fonts.yml
2020-11-03 11:36:46 +10:00

18 lines
504 B
YAML

---
- name: Install Google Noto fonts for language coverage
yum:
name:
- "google-noto-*"
vars:
ansible_python_interpreter: auto
- name: Link the language fonts into the JDK
# Not idiomatic, but cleaner than messing with nested lookups...
shell:
cmd: "ln -sf /usr/share/fonts/google-noto*/* {{ item }}/"
creates: "{{ item }}/NotoSansJavanese-Regular.ttf"
warn: false
with_items: "{{ atl_fonts_fallback_dirs }}"
changed_when: false # For Molecule idempotence check