Hyunsun Moon | ffb66f8 | 2021-12-02 13:51:09 -0800 | [diff] [blame] | 1 | --- |
| 2 | # nginx tasks/Debian-repo.yml |
| 3 | # |
| 4 | # SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org> |
| 5 | # SPDX-License-Identifier: Apache-2.0 |
| 6 | |
| 7 | - name: Install GPG to support adding apt repo keys |
| 8 | apt: |
| 9 | name: "gpg" |
| 10 | state: "present" |
| 11 | update_cache: true |
| 12 | |
| 13 | # Docs: http://nginx.org/en/linux_packages.html |
| 14 | - name: Add NGINX apt repo key |
| 15 | apt_key: |
| 16 | data: "{{ lookup('file','nginx_signing.key') }}" |
| 17 | state: "present" |
| 18 | |
| 19 | - name: Add NGINX apt repo |
| 20 | apt_repository: |
| 21 | repo: >- |
| 22 | deb http://nginx.org/packages/{{ ansible_lsb['id'] | lower }} |
| 23 | {{ ansible_lsb['codename'] }} nginx |
| 24 | update_cache: true |