src.nth.io/

summaryrefslogtreecommitdiff
path: root/jellyfin
diff options
context:
space:
mode:
Diffstat (limited to 'jellyfin')
-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"