Clean up group names. Fix mineos
This commit is contained in:
16
roles/geerlingguy.java/tasks/setup-Debian.yml
Normal file
16
roles/geerlingguy.java/tasks/setup-Debian.yml
Normal 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
|
||||
Reference in New Issue
Block a user