src.nth.io/

summaryrefslogtreecommitdiff
path: root/plex/tasks
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2022-09-09 11:54:48 -0500
committerLuke Hoersten <[email protected]>2022-09-09 11:54:48 -0500
commitc0501ebf8e9591f728599c930a772f0aa9cc325f (patch)
tree419b49db5284340a0e94ba0088a3ddfe380c5f72 /plex/tasks
parentbae099b6ba0a0275b0e8c2eb926d3989c474c434 (diff)
Removed deprecated apt_key ansible module.
Diffstat (limited to 'plex/tasks')
-rw-r--r--plex/tasks/main.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/plex/tasks/main.yaml b/plex/tasks/main.yaml
index ff5ddcf..2f8ea11 100644
--- a/plex/tasks/main.yaml
+++ b/plex/tasks/main.yaml
@@ -4,7 +4,10 @@
- name: add plex apt key
become: yes
- apt_key: url="https://downloads.plex.tv/plex-keys/PlexSign.key"
+ get_url:
+ url: "https://downloads.plex.tv/plex-keys/PlexSign.key"
+ dest: /etc/apt/trusted.gpg.d/plex.asc
+ mode: "0644"
- name: add plex apt repo
become: yes