1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

zypper_repository: disable failing repository (#6415)

* Disable failing repository from zypper_repository tests.

* Also disable repo file for >= 15.4.

* Simply disable file test for now.
This commit is contained in:
Felix Fontein 2023-04-23 18:11:25 +02:00 committed by GitHub
parent 69d7f19c74
commit f0fcc91ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,13 +132,14 @@
repo: http://download.opensuse.org/repositories/devel:/languages:/ruby/openSUSE_Leap_{{ ansible_distribution_version }}/ repo: http://download.opensuse.org/repositories/devel:/languages:/ruby/openSUSE_Leap_{{ ansible_distribution_version }}/
state: absent state: absent
- name: "Test adding a repo with custom GPG key" # FIXME: this currently fails with `Repository 'Apache_PHP_Modules' is invalid.`
community.general.zypper_repository: # - name: "Test adding a repo with custom GPG key"
name: "Apache_PHP_Modules" # community.general.zypper_repository:
repo: "http://download.opensuse.org/repositories/server:/php:/applications/openSUSE_Tumbleweed/" # name: "Apache_PHP_Modules"
priority: 100 # repo: "http://download.opensuse.org/repositories/server:/php:/applications/openSUSE_Tumbleweed/"
auto_import_keys: true # priority: 100
state: "present" # auto_import_keys: true
# state: "present"
- name: add a repo by releasever - name: add a repo by releasever
community.general.zypper_repository: community.general.zypper_repository:
@ -213,6 +214,8 @@
- remove_repo is changed - remove_repo is changed
# For now, the URL does not work for 15.4 # For now, the URL does not work for 15.4
# FIXME: Try to get this working with newer versions
# (Maybe 'Uyuni' needs to be replaced with something else?)
- when: ansible_distribution_version is version('15.4', '<') - when: ansible_distribution_version is version('15.4', '<')
block: block:
- name: add new repository via url to .repo file - name: add new repository via url to .repo file
@ -260,6 +263,9 @@
- "removed_by_repo_file" - "removed_by_repo_file"
- "'/systemsmanagement:/Uyuni:/Stable/' not in etc_zypp_reposd.stdout" - "'/systemsmanagement:/Uyuni:/Stable/' not in etc_zypp_reposd.stdout"
# FIXME: THIS DOESN'T SEEM TO WORK ANYMORE WITH ANY OPENSUSE VERSION IN CI!
- when: false
block:
- name: Copy test .repo file - name: Copy test .repo file
copy: copy:
src: 'files/systemsmanagement_Uyuni_Utils.repo' src: 'files/systemsmanagement_Uyuni_Utils.repo'