mirror of
https://github.com/aljazceru/ansible-elasticsearch.git
synced 2025-12-17 09:04:20 +01:00
8 lines
266 B
YAML
8 lines
266 B
YAML
---
|
|
- name: RedHat - Ensure Java is installed
|
|
yum: name={{ java }} state=latest
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- name: Debian - Ensure Java is installed
|
|
apt: name={{ java }} state=present update_cache=yes force=yes
|
|
when: ansible_os_family == 'Debian' |