try and handle changed path in f28+ for updates/updates-testing
This commit is contained in:
parent
bdd9841725
commit
73857351f3
3 changed files with 66 additions and 2 deletions
26
files/common/fedora-updates-testing.repo-28
Normal file
26
files/common/fedora-updates-testing.repo-28
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
[updates-testing]
|
||||||
|
name=Fedora $releasever - $basearch - Test Updates
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=https://infrastructure.fedoraproject.org/pub/fedora/linux/updates/testing/$releasever/Everything/$basearch/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
|
||||||
|
enabled=0
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
|
[updates-testing-debuginfo]
|
||||||
|
name=Fedora $releasever - $basearch - Test Updates Debug
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=http://infrastructure.fedoraproject.org/pub/fedora/linux/updates/testing/$releasever/Everything/$basearch/debug/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
|
||||||
|
enabled=0
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
|
[updates-testing-source]
|
||||||
|
name=Fedora $releasever - Test Updates Source
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=http://infrastructure.fedoraproject.org/pub/fedora/linux/updates/testing/Everything/$releasever/SRPMS/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-source-f$releasever&arch=$basearch
|
||||||
|
enabled=0
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
26
files/common/fedora-updates.repo-28
Normal file
26
files/common/fedora-updates.repo-28
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
[updates]
|
||||||
|
name=Fedora $releasever - $basearch - Updates
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=https://infrastructure.fedoraproject.org/pub/fedora/linux/updates/$releasever/Everything/$basearch/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
enabled=1
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
|
[updates-debuginfo]
|
||||||
|
name=Fedora $releasever - $basearch - Updates - Debug
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=http://infrastructure.fedoraproject.org/pub/fedora/linux/updates/$releasever/Everything/$basearch/debug/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
|
||||||
|
enabled=0
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
||||||
|
|
||||||
|
[updates-source]
|
||||||
|
name=Fedora $releasever - Updates Source
|
||||||
|
failovermethod=priority
|
||||||
|
baseurl=http://infrastructure.fedoraproject.org/pub/fedora/linux/updates/$releasever/Everything/SRPMS/
|
||||||
|
#metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-source-f$releasever&arch=$basearch
|
||||||
|
enabled=0
|
||||||
|
gpgcheck=1
|
||||||
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch
|
|
@ -31,13 +31,25 @@
|
||||||
- packages
|
- packages
|
||||||
- yumrepos
|
- yumrepos
|
||||||
|
|
||||||
- name: put fedora repos on primary architecture systems
|
- name: put fedora repos on primary architecture systems ( 27 and older)
|
||||||
copy: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}"
|
copy: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}"
|
||||||
with_items:
|
with_items:
|
||||||
- fedora.repo
|
- fedora.repo
|
||||||
- fedora-updates.repo
|
- fedora-updates.repo
|
||||||
- fedora-updates-testing.repo
|
- fedora-updates-testing.repo
|
||||||
when: ansible_distribution == 'Fedora' and (ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64' or ansible_architecture == 'i386' or ansible_architecture == 'armv7l') and not inventory_hostname.startswith('arm03') and not inventory_hostname.startswith('f28-test') and not inventory_hostname.startswith('wiki01.stg')
|
when: ansible_distribution == 'Fedora' and (ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64' or ansible_architecture == 'i386' or ansible_architecture == 'armv7l') and not inventory_hostname.startswith('arm03') and not inventory_hostname.startswith('f28-test') and not inventory_hostname.startswith('wiki01.stg') and ansible_distribution_major_version|int < 28
|
||||||
|
tags:
|
||||||
|
- config
|
||||||
|
- packages
|
||||||
|
- yumrepos
|
||||||
|
|
||||||
|
- name: put fedora repos on primary architecture systems ( 28 and newer)
|
||||||
|
copy: src="{{ files }}/common/{{ item }}" dest="/etc/yum.repos.d/{{ item }}"
|
||||||
|
with_items:
|
||||||
|
- fedora.repo
|
||||||
|
- fedora-updates.repo
|
||||||
|
- fedora-updates-testing.repo
|
||||||
|
when: ansible_distribution == 'Fedora' and (ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64' or ansible_architecture == 'i386' or ansible_architecture == 'armv7l') and not inventory_hostname.startswith('arm03') and not inventory_hostname.startswith('f28-test') and not inventory_hostname.startswith('wiki01.stg') and ansible_distribution_major_version|int => 28
|
||||||
tags:
|
tags:
|
||||||
- config
|
- config
|
||||||
- packages
|
- packages
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue