src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-07-03 09:38:16 -0500
committerLuke Hoersten <[email protected]>2020-07-03 09:38:16 -0500
commitcc548f0cfb5e8e59575a4ef967509f9c15548e86 (patch)
tree85eb934c353e5ec2f07a8870c708a1676a353cbf
parentf0a5a5264e3fb8c3726ba47a2509512b2d08d8b2 (diff)
Added jellyfin role. Forkbombs my computer though.
-rw-r--r--jellyfin/tasks/main.yaml13
1 files changed, 13 insertions, 0 deletions
diff --git a/jellyfin/tasks/main.yaml b/jellyfin/tasks/main.yaml
new file mode 100644
index 0000000..44fdb97
--- /dev/null
+++ b/jellyfin/tasks/main.yaml
@@ -0,0 +1,13 @@
+---
+
+- name: add jellyfin apt key
+ become: yes
+ apt_key: url="https://repo.jellyfin.org/jellyfin_team.gpg.key"
+
+- name: add jellyfin apt repo
+ become: yes
+ apt_repository: repo="deb [arch={{arch}}] http://repo.jellyfin.org/ubuntu focal main"
+
+- name: apt install jellyfin
+ become: yes
+ apt: name="jellyfin"