diff options
| author | Luke Hoersten <[email protected]> | 2022-09-09 11:54:48 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2022-09-09 11:54:48 -0500 |
| commit | c0501ebf8e9591f728599c930a772f0aa9cc325f (patch) | |
| tree | 419b49db5284340a0e94ba0088a3ddfe380c5f72 /plex/tasks | |
| parent | bae099b6ba0a0275b0e8c2eb926d3989c474c434 (diff) | |
Removed deprecated apt_key ansible module.
Diffstat (limited to 'plex/tasks')
| -rw-r--r-- | plex/tasks/main.yaml | 5 |
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 |
