src.nth.io/

summaryrefslogtreecommitdiff
path: root/minecraft/tasks/adoptopenjdk.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'minecraft/tasks/adoptopenjdk.yaml')
-rw-r--r--minecraft/tasks/adoptopenjdk.yaml21
1 files changed, 0 insertions, 21 deletions
diff --git a/minecraft/tasks/adoptopenjdk.yaml b/minecraft/tasks/adoptopenjdk.yaml
deleted file mode 100644
index 077114e..0000000
--- a/minecraft/tasks/adoptopenjdk.yaml
+++ /dev/null
@@ -1,21 +0,0 @@
----
-
-- name: configure apt proxy bypass for https
- become: yes
- copy: src="03adoptopenjdk-direct" dest="/etc/apt/apt.conf.d/03adoptopenjdk-direct"
-
-- name: add adoptopenjdk apt key
- become: yes
- apt_key: url="https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public/"
-
-- name: add adoptopenjdk apt repo
- become: yes
- apt_repository: repo="deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ buster main"
-
-- name: update apt package cache
- become: yes
- apt: upgrade="dist" autoremove="yes" autoclean="yes" update_cache="yes" cache_valid_time="3600"
-
-- name: install adoptopenjdk hotspot jre 16
- become: yes
- apt: name="adoptopenjdk-16-hotspot-jre"