Skip to content

Instantly share code, notes, and snippets.

@ScalaWilliam
Last active June 3, 2017 09:02
Show Gist options
  • Save ScalaWilliam/fbc2ea68e708e7c93bef654ce86a3105 to your computer and use it in GitHub Desktop.
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
- 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