Clean up group names. Fix mineos

This commit is contained in:
2019-12-23 10:30:50 -05:00
parent 488aa851bb
commit 793f9f0da3
49 changed files with 1041 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
---
# 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:
path: /usr/share/man/man1
state: directory
recurse: true
when:
- ansible_distribution == 'Ubuntu'
- ansible_distribution_version == '18.04'
- name: Ensure Java is installed.
apt:
name: "{{ java_packages }}"
state: present