mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
c121e8685f
commit
7c493eb4e5
4 changed files with 12 additions and 10 deletions
2
changelogs/fragments/3237-copr-fix_chroot_naming.yml
Normal file
2
changelogs/fragments/3237-copr-fix_chroot_naming.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- copr - fix chroot naming issues, ``centos-stream`` changed naming to ``centos-stream-<number>`` (for exmaple ``centos-stream-8``) (https://github.com/ansible-collections/community.general/issues/2084, https://github.com/ansible-collections/community.general/pull/3237).
|
|
@ -120,8 +120,7 @@ class CoprModule(object):
|
||||||
@property
|
@property
|
||||||
def short_chroot(self):
|
def short_chroot(self):
|
||||||
"""str: Chroot (distribution-version-architecture) shorten to distribution-version."""
|
"""str: Chroot (distribution-version-architecture) shorten to distribution-version."""
|
||||||
chroot_parts = self.chroot.split("-")
|
return self.chroot.rsplit('-', 1)[0]
|
||||||
return "{0}-{1}".format(chroot_parts[0], chroot_parts[1])
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def arch(self):
|
def arch(self):
|
||||||
|
@ -193,18 +192,20 @@ class CoprModule(object):
|
||||||
Returns:
|
Returns:
|
||||||
Information about the repository.
|
Information about the repository.
|
||||||
"""
|
"""
|
||||||
distribution, version = self.short_chroot.split("-")
|
distribution, version = self.short_chroot.split('-', 1)
|
||||||
chroot = self.short_chroot
|
chroot = self.short_chroot
|
||||||
while True:
|
while True:
|
||||||
repo_info, status_code = self._get(chroot)
|
repo_info, status_code = self._get(chroot)
|
||||||
if repo_info:
|
if repo_info:
|
||||||
return repo_info
|
return repo_info
|
||||||
if distribution == "rhel":
|
if distribution == "rhel":
|
||||||
chroot = "centos-stream"
|
chroot = "centos-stream-8"
|
||||||
distribution = "centos"
|
distribution = "centos"
|
||||||
elif distribution == "centos":
|
elif distribution == "centos":
|
||||||
if version == "stream":
|
if version == "stream-8":
|
||||||
version = "8"
|
version = "8"
|
||||||
|
elif version == "stream-9":
|
||||||
|
version = "9"
|
||||||
chroot = "epel-{0}".format(version)
|
chroot = "epel-{0}".format(version)
|
||||||
distribution = "epel"
|
distribution = "epel"
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -3,4 +3,3 @@ needs/root
|
||||||
skip/macos
|
skip/macos
|
||||||
skip/osx
|
skip/osx
|
||||||
skip/freebsd
|
skip/freebsd
|
||||||
disabled # FIXME
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
host: copr.fedorainfracloud.org
|
host: copr.fedorainfracloud.org
|
||||||
state: enabled
|
state: enabled
|
||||||
name: '@copr/integration_tests'
|
name: '@copr/integration_tests'
|
||||||
chroot: centos-stream-x86_64
|
chroot: fedora-rawhide-x86_64
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: assert that the copr project was enabled
|
- name: assert that the copr project was enabled
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
copr:
|
copr:
|
||||||
state: enabled
|
state: enabled
|
||||||
name: '@copr/integration_tests'
|
name: '@copr/integration_tests'
|
||||||
chroot: centos-stream-x86_64
|
chroot: fedora-rawhide-x86_64
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: assert that the copr project was enabled
|
- name: assert that the copr project was enabled
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
copr:
|
copr:
|
||||||
state: disabled
|
state: disabled
|
||||||
name: '@copr/integration_tests'
|
name: '@copr/integration_tests'
|
||||||
chroot: centos-stream-x86_64
|
chroot: fedora-rawhide-x86_64
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: assert that the copr project was disabled
|
- name: assert that the copr project was disabled
|
||||||
|
@ -61,4 +61,4 @@
|
||||||
host: copr.fedorainfracloud.org
|
host: copr.fedorainfracloud.org
|
||||||
state: absent
|
state: absent
|
||||||
name: '@copr/integration_tests'
|
name: '@copr/integration_tests'
|
||||||
chroot: centos-stream-x86_64
|
chroot: fedora-rawhide-x86_64
|
||||||
|
|
Loading…
Reference in a new issue