26cea075f2
The variables in yum.yml and yum-cron.yml were deprecated in Ussuri. This patch removes them, and updates the defaults in dnf.yml. Story: 2008160 Task: 40906 Change-Id: I97cc98dd2ff726e5885fefcab17f17796d9fd453
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
---
|
|
# Yum configuration. Dict mapping Yum config option names to their values.
|
|
# dnf_config:
|
|
# proxy: http://proxy.example.com
|
|
dnf_config: {}
|
|
|
|
# Whether or not to use a local Yum mirror. Default value is 'false'.
|
|
dnf_use_local_mirror: false
|
|
|
|
# Mirror FQDN for Yum repos. Default value is 'mirror.centos.org'.
|
|
dnf_centos_mirror_host: 'mirror.centos.org'
|
|
|
|
# Mirror directory for Yum CentOS repos. Default value is 'centos'.
|
|
dnf_centos_mirror_directory: 'centos'
|
|
|
|
# Mirror FQDN for Yum EPEL repos. Default value is
|
|
# 'download.fedoraproject.org'.
|
|
dnf_epel_mirror_host: 'download.fedoraproject.org'
|
|
|
|
# Mirror directory for Yum EPEL repos. Default value is 'pub/epel'.
|
|
dnf_epel_mirror_directory: 'pub/epel'
|
|
|
|
# A dict of custom repositories.
|
|
# You can see params on
|
|
# http://docs.ansible.com/ansible/latest/modules/yum_repository_module.html.
|
|
# For example:
|
|
# dnf_custom_repos:
|
|
# reponame:
|
|
# baseurl: http://repo
|
|
# file: myrepo
|
|
# gpgkey: http://gpgkey
|
|
# gpgcheck: yes
|
|
dnf_custom_repos: {}
|
|
|
|
# Whether to install the epel-release package. This affects RedHat-based
|
|
# systems only. Default value is 'true'.
|
|
dnf_install_epel: true
|
|
|
|
###############################################################################
|
|
# DNF Automatic configuration.
|
|
|
|
# Whether DNF Automatic is enabled. This can be used to regularly apply
|
|
# security updates. Default value is 'false'.
|
|
dnf_automatic_enabled: false
|
|
|
|
# DNF Automatic upgrade type. Default value is 'security'.
|
|
dnf_automatic_upgrade_type: 'security'
|