$releasever can be 7Server, but there is no such CentOS path on download.opensuse.org. Use ansible_distribution_major_version instead of $releasever.
This commit is contained in:
parent
85ff3eb8be
commit
85fe716d46
1 changed files with 4 additions and 4 deletions
|
@ -75,9 +75,9 @@
|
||||||
yum_repository:
|
yum_repository:
|
||||||
name: devel_kubic_libcontainers_stable
|
name: devel_kubic_libcontainers_stable
|
||||||
description: Stable Releases of Upstream github.com/containers packages (CentOS_$releasever)
|
description: Stable Releases of Upstream github.com/containers packages (CentOS_$releasever)
|
||||||
baseurl: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_$releasever/
|
baseurl: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_{{ ansible_distribution_major_version }}/
|
||||||
gpgcheck: yes
|
gpgcheck: yes
|
||||||
gpgkey: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_$releasever/repodata/repomd.xml.key
|
gpgkey: http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_{{ ansible_distribution_major_version }}/repodata/repomd.xml.key
|
||||||
keepcache: '0'
|
keepcache: '0'
|
||||||
when:
|
when:
|
||||||
- ansible_os_family == "RedHat"
|
- ansible_os_family == "RedHat"
|
||||||
|
@ -87,9 +87,9 @@
|
||||||
yum_repository:
|
yum_repository:
|
||||||
name: "devel_kubic_libcontainers_stable_cri-o_{{ crio_version }}"
|
name: "devel_kubic_libcontainers_stable_cri-o_{{ crio_version }}"
|
||||||
description: "CRI-O {{ crio_version }} (CentOS_$releasever)"
|
description: "CRI-O {{ crio_version }} (CentOS_$releasever)"
|
||||||
baseurl: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_$releasever/"
|
baseurl: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_{{ ansible_distribution_major_version }}/"
|
||||||
gpgcheck: yes
|
gpgcheck: yes
|
||||||
gpgkey: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_$releasever/repodata/repomd.xml.key"
|
gpgkey: "http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/CentOS_{{ ansible_distribution_major_version }}/repodata/repomd.xml.key"
|
||||||
when:
|
when:
|
||||||
- ansible_os_family == "RedHat"
|
- ansible_os_family == "RedHat"
|
||||||
- ansible_distribution not in ["Amazon", "Fedora"]
|
- ansible_distribution not in ["Amazon", "Fedora"]
|
||||||
|
|
Loading…
Reference in a new issue