Skip to content

Commit 121433d

Browse files
authored
Add GPG key to Focal apt repo setup (#487)
1 parent 5b60ab6 commit 121433d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Support for ansible-base (ansible-core `<2.12`).
1212

1313
BUG FIXES:
1414

15-
The Molecule `upgrade` scenario verification test no longer has to be updated on each new NGINX OSS release.
15+
* The Molecule `upgrade` scenario verification test no longer has to be updated on each new NGINX OSS release.
16+
* Add GPG key for Ubuntu Focal during APT repository setup.
1617

1718
## 0.22.0 (December 9, 2021)
1819

tasks/amplify/setup-debian.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
---
2+
3+
- name: (Ubuntu 20.04) Add NGINX Amplify apt key
4+
apt_key:
5+
url: https://nginx.org/keys/nginx_signing.key
6+
state: present
7+
become: true
8+
when: ansible_facts['distribution_release'] == "focal"
9+
210
- name: (Debian/Ubuntu) Add NGINX Amplify agent repository
311
apt_repository:
412
filename: nginx-amplify

0 commit comments

Comments
 (0)