diff options
| author | Luke Hoersten <[email protected]> | 2020-07-03 09:38:16 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2020-07-03 09:38:16 -0500 |
| commit | cc548f0cfb5e8e59575a4ef967509f9c15548e86 (patch) | |
| tree | 85eb934c353e5ec2f07a8870c708a1676a353cbf /jellyfin | |
| parent | f0a5a5264e3fb8c3726ba47a2509512b2d08d8b2 (diff) | |
Added jellyfin role. Forkbombs my computer though.
Diffstat (limited to 'jellyfin')
| -rw-r--r-- | jellyfin/tasks/main.yaml | 13 |
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" |
