Commit d2b69c8a authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

playbook: add Debian 10 repositories

parent c1707e6b
......@@ -16,6 +16,10 @@
- include: fedora_init.yml
- name: Install Debian 10 repository key
apt_key: url={{ base_open_build_url }}/Debian_10.0/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "10"
- name: Install Debian 9 repository key
apt_key: url={{ base_open_build_url }}/Debian_9.0/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "9"
......@@ -32,6 +36,10 @@
apt_key: url={{ base_open_build_url }}/Debian_6.0/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "6"
- name: Install Debian 10 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_10.0/ ./' state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "10"
- name: Install Debian 9 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_9.0/ ./' state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "9"
......
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