homeserver/roles/geerlingguy.java/tasks/setup-Debian.yml

17 lines
454 B
YAML
Raw Normal View History

---
# See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199 and
# https://github.com/geerlingguy/ansible-role-java/issues/64
- name: Ensure 'man' directory exists.
file: # noqa 208
path: /usr/share/man/man1
state: directory
recurse: true
when:
- ansible_distribution == 'Ubuntu'
- ansible_distribution_major_version | int >= 18
- name: Ensure Java is installed.
apt:
name: "{{ java_packages }}"
state: present