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 /rpi-base/tasks | |
| parent | bae099b6ba0a0275b0e8c2eb926d3989c474c434 (diff) | |
Removed deprecated apt_key ansible module.
Diffstat (limited to 'rpi-base/tasks')
| -rw-r--r-- | rpi-base/tasks/main.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rpi-base/tasks/main.yaml b/rpi-base/tasks/main.yaml index 6a8c2df..b766aa3 100644 --- a/rpi-base/tasks/main.yaml +++ b/rpi-base/tasks/main.yaml @@ -11,7 +11,10 @@ - name: add log2ram apt key become: yes - apt_key: url="https://azlux.fr/repo.gpg.key" + get_url: + url: "https://azlux.fr/repo.gpg.key" + dest: /etc/apt/trusted.gpg.d/log2ram.asc + mode: "0644" - name: add log2ram apt repo become: yes |
