Last active
June 3, 2017 09:02
-
-
Save ScalaWilliam/fbc2ea68e708e7c93bef654ce86a3105 to your computer and use it in GitHub Desktop.
Easy way to get OpenJDK 8 running on Debian Jessie by uzing Azul's Zulu with Ansible. More detail: https://groups.google.com/d/msg/mechanical-sympathy/jQGahuzJKM4/ydeNt56mRYkJ https://twitter.com/techpractical/status/870924613089447937
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: zulu apt key | |
apt_key: keyserver='hkp://keyserver.ubuntu.com:80' id=0x219BD9C9 | |
- name: Add Zulu repository | |
apt_repository: | |
repo: deb http://repos.azulsystems.com/debian stable main | |
state: present | |
- name: ensure zulu jdk installed | |
apt: | |
name: zulu-8=8.4.0.1 | |
state: present | |
update_cache: yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment