Commit 81d90498 authored by Rafael Monnerat's avatar Rafael Monnerat

playbook: Add Debian 12 repository

See merge request nexedi/slapos.package!182
parents 83e0536d 5ac671e7
...@@ -16,6 +16,10 @@ ...@@ -16,6 +16,10 @@
- file: path=/etc/apt/sources.list.d/re6stnet.list state=absent - file: path=/etc/apt/sources.list.d/re6stnet.list state=absent
when: ansible_distribution == "Debian" when: ansible_distribution == "Debian"
- name: Install Debian 12 repository key
apt_key: url={{ base_open_build_url }}/Debian_12/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "12"
- name: Install Debian 11 repository key - name: Install Debian 11 repository key
apt_key: url={{ base_open_build_url }}/Debian_11/Release.key state=present apt_key: url={{ base_open_build_url }}/Debian_11/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "11" when: ansible_distribution == "Debian" and ansible_distribution_major_version == "11"
...@@ -32,6 +36,10 @@ ...@@ -32,6 +36,10 @@
apt_key: url={{ base_open_build_url }}/Debian_8.0/Release.key state=present apt_key: url={{ base_open_build_url }}/Debian_8.0/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "8" when: ansible_distribution == "Debian" and ansible_distribution_major_version == "8"
- name: Install Debian 12 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_12/ ./' state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "12"
- name: Install Debian 11 repository - name: Install Debian 11 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_11/ ./' state=present apt_repository: repo='deb {{ base_open_build_url }}/Debian_11/ ./' state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "11" when: ansible_distribution == "Debian" and ansible_distribution_major_version == "11"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment