ansible-roles/java/tasks/main.yml

11 lines
233 B
YAML
Raw Normal View History

2018-03-23 11:47:13 +01:00
---
# - fail:
# msg: "This role support only java 8 for now !"
# when: java_version != 8
2018-03-23 11:47:13 +01:00
- include: openjdk.yml
when: "{{ java_alternative == 'openjdk' }}"
- include: oracle.yml
when: "{{ java_alternative == 'oracle' }}"