cert, nginx: Update for debian 12

This commit is contained in:
jtbx 2023-07-08 23:59:19 +02:00
parent 67483ece20
commit b2e9c22821
3 changed files with 4 additions and 2 deletions

View file

@ -5,3 +5,4 @@ dependencies: # noqa meta-no-info
- name: Debian - name: Debian
major_versions: major_versions:
- "11" - "11"
- "12"

View file

@ -6,3 +6,4 @@ dependencies:
- name: Debian - name: Debian
major_versions: major_versions:
- "11" - "11"
- "12"

View file

@ -14,14 +14,14 @@
- name: make sure NGINX APT repository is added - name: make sure NGINX APT repository is added
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: deb https://nginx.org/packages/debian/ bullseye nginx repo: "deb https://nginx.org/packages/debian/ {{ ansible_distribution_release }} nginx"
state: present state: present
become: true become: true
notify: apt-get update notify: apt-get update
- name: make sure NGINX APT source repository is added - name: make sure NGINX APT source repository is added
ansible.builtin.apt_repository: ansible.builtin.apt_repository:
repo: deb-src https://nginx.org/packages/debian/ bullseye nginx repo: "deb-src https://nginx.org/packages/debian/ {{ ansible_distribution_release }} nginx"
state: present state: present
become: true become: true
notify: apt-get update notify: apt-get update