Commit 5caf3545 authored by Thomas Gambier's avatar Thomas Gambier 🚴🏼

Revert "playbook: use OBS Debian 9 for all version of Debian <= 9"

This reverts commit 097e1cd0.

This is not working because of dependencies on newer libc6 and
libstdc++6.
parent 097e1cd0
Pipeline #29185 passed with stage
in 0 seconds
......@@ -26,7 +26,11 @@
- 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"
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "9"
- name: Install Debian 8 repository key
apt_key: url={{ base_open_build_url }}/Debian_8.0/Release.key state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "8"
- name: Install Debian 11 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_11/ ./' state=present
......@@ -38,7 +42,11 @@
- 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"
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "9"
- name: Install Debian 8 repository
apt_repository: repo='deb {{ base_open_build_url }}/Debian_8.0/ ./' state=present
when: ansible_distribution == "Debian" and ansible_distribution_major_version == "8"
- name: Install Ubuntu 14.04 repository key
apt_key: url={{ base_open_build_url }}/xUbuntu_14.04/Release.key state=present
......
73bdefddd86c1bb8d585c0f0d1d636a9bf3bca1a787c3de9ab2cd08591e21c31 -
e4b015775c67f46178e3e569eacbc97319395fe47fe0070b610f5ca0411f70b7 -
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