feat: ubuntu compatibility

This commit is contained in:
Malik Kennedy 2024-03-16 18:17:20 +00:00
commit b9d9874a00
No known key found for this signature in database
22 changed files with 222 additions and 26 deletions

View file

@ -18,5 +18,12 @@
name:
- java-1.8.0-openjdk
state: present
when: ansible_facts['os_family'] == "RedHat"
- name: Install JDK8
become: yes
ansible.builtin.apt:
name:
- openjdk-8-jdk
state: present
when: ansible_facts['os_family'] == "Debian"