dc32b52f08
Adds support for configuration of DNF repo mirrors for CentOS and EPEL repositories, as well as custom repositories. Adds support for DNF automatic, which is a replacement for yum-cron. Configuration is backwards compatible, falling back to the equivalent yum variables when DNF variables have not been overridden. Change-Id: I8bef5e9c8e1c77c25d6077ff690da8f2cde6a643 Story: 2006574 Task: 38922
24 lines
875 B
Django/Jinja
24 lines
875 B
Django/Jinja
[epel-modular]
|
|
name=Extra Packages for Enterprise Linux Modular $releasever - $basearch
|
|
baseurl=http://{{ dnf_epel_mirror_host }}/{{ dnf_epel_mirror_directory }}/$releasever/Modular/$basearch
|
|
enabled=1
|
|
gpgcheck=1
|
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
|
|
fastestmirror=0
|
|
|
|
[epel-modular-debuginfo]
|
|
name=Extra Packages for Enterprise Linux Modular $releasever - $basearch - Debug
|
|
baseurl=http://{{ dnf_epel_mirror_host }}/{{ dnf_epel_mirror_directory }}/$releasever/Modular/$basearch/debug
|
|
enabled=0
|
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
|
|
gpgcheck=1
|
|
fastestmirror=0
|
|
|
|
[epel-modular-source]
|
|
name=Extra Packages for Enterprise Linux Modular $releasever - $basearch - Source
|
|
baseurl=http://{{ dnf_epel_mirror_host }}/{{ dnf_epel_mirror_directory }}/$releasever/Modular/SRPMS
|
|
enabled=0
|
|
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
|
|
gpgcheck=1
|
|
fastestmirror=0
|