yum_repository.py (ansible-2.14.0) | : | yum_repository.py (ansible-2.14.1rc1) | ||
---|---|---|---|---|
skipping to change at line 23 | skipping to change at line 23 | |||
author: Jiri Tyr (@jtyr) | author: Jiri Tyr (@jtyr) | |||
version_added: '2.1' | version_added: '2.1' | |||
short_description: Add or remove YUM repositories | short_description: Add or remove YUM repositories | |||
description: | description: | |||
- Add or remove YUM repositories in RPM-based Linux distributions. | - Add or remove YUM repositories in RPM-based Linux distributions. | |||
- If you wish to update an existing repository definition use M(community.gene ral.ini_file) instead. | - If you wish to update an existing repository definition use M(community.gene ral.ini_file) instead. | |||
options: | options: | |||
async: | async: | |||
description: | description: | |||
- If set to C(yes) Yum will download packages and metadata from this | - If set to C(true) Yum will download packages and metadata from this | |||
repo in parallel, if possible. | repo in parallel, if possible. | |||
- In ansible-core 2.11, 2.12, and 2.13 the default value is C(true). | - In ansible-core 2.11, 2.12, and 2.13 the default value is C(true). | |||
- This option has been deprecated in RHEL 8. If you're using one of the | - This option has been deprecated in RHEL 8. If you're using one of the | |||
versions listed above, you can set this option to None to avoid passing an | versions listed above, you can set this option to None to avoid passing an | |||
unknown configuration option. | unknown configuration option. | |||
type: bool | type: bool | |||
bandwidth: | bandwidth: | |||
description: | description: | |||
- Maximum available network bandwidth in bytes/second. Used with the | - Maximum available network bandwidth in bytes/second. Used with the | |||
I(throttle) option. | I(throttle) option. | |||
skipping to change at line 119 | skipping to change at line 119 | |||
type: str | type: str | |||
gpgcakey: | gpgcakey: | |||
description: | description: | |||
- A URL pointing to the ASCII-armored CA key file for the repository. | - A URL pointing to the ASCII-armored CA key file for the repository. | |||
type: str | type: str | |||
gpgcheck: | gpgcheck: | |||
description: | description: | |||
- Tells yum whether or not it should perform a GPG signature check on | - Tells yum whether or not it should perform a GPG signature check on | |||
packages. | packages. | |||
- No default setting. If the value is not set, the system setting from | - No default setting. If the value is not set, the system setting from | |||
C(/etc/yum.conf) or system default of C(no) will be used. | C(/etc/yum.conf) or system default of C(false) will be used. | |||
type: bool | type: bool | |||
gpgkey: | gpgkey: | |||
description: | description: | |||
- A URL pointing to the ASCII-armored GPG key file for the repository. | - A URL pointing to the ASCII-armored GPG key file for the repository. | |||
- It can also be a list of multiple URLs. | - It can also be a list of multiple URLs. | |||
type: list | type: list | |||
elements: str | elements: str | |||
module_hotfixes: | module_hotfixes: | |||
description: | description: | |||
- Disable module RPM filtering and make all RPMs from the repository | - Disable module RPM filtering and make all RPMs from the repository | |||
skipping to change at line 291 | skipping to change at line 291 | |||
type: str | type: str | |||
default: '10' | default: '10' | |||
s3_enabled: | s3_enabled: | |||
description: | description: | |||
- Enables support for S3 repositories. | - Enables support for S3 repositories. | |||
- This option only works if the YUM S3 plugin is installed. | - This option only works if the YUM S3 plugin is installed. | |||
type: bool | type: bool | |||
default: 'no' | default: 'no' | |||
skip_if_unavailable: | skip_if_unavailable: | |||
description: | description: | |||
- If set to C(yes) yum will continue running if this repository cannot be | - If set to C(true) yum will continue running if this repository cannot be | |||
contacted for any reason. This should be set carefully as all repos are | contacted for any reason. This should be set carefully as all repos are | |||
consulted for any given command. | consulted for any given command. | |||
type: bool | type: bool | |||
default: 'no' | default: 'no' | |||
ssl_check_cert_permissions: | ssl_check_cert_permissions: | |||
description: | description: | |||
- Whether yum should check the permissions on the paths for the | - Whether yum should check the permissions on the paths for the | |||
certificates on the repository (both remote and local). | certificates on the repository (both remote and local). | |||
- If we can't read any of the files then yum will force | - If we can't read any of the files then yum will force | |||
I(skip_if_unavailable) to be C(yes). This is most useful for non-root | I(skip_if_unavailable) to be C(true). This is most useful for non-root | |||
processes which use yum on repos that have client cert files which are | processes which use yum on repos that have client cert files which are | |||
readable only by root. | readable only by root. | |||
type: bool | type: bool | |||
default: 'no' | default: 'no' | |||
sslcacert: | sslcacert: | |||
description: | description: | |||
- Path to the directory containing the databases of the certificate | - Path to the directory containing the databases of the certificate | |||
authorities yum should use to verify SSL certificates. | authorities yum should use to verify SSL certificates. | |||
type: str | type: str | |||
aliases: [ ca_cert ] | aliases: [ ca_cert ] | |||
End of changes. 4 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added |