|
|
|
@ -109,6 +109,12 @@ options:
|
|
|
|
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.
|
|
|
|
|
|
|
|
module_hotfixes:
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
|
|
|
- Disable module RPM filtering and make all RPMs from the repository
|
|
|
|
|
|
|
|
available. The default is C(None).
|
|
|
|
|
|
|
|
version_added: '2.11'
|
|
|
|
|
|
|
|
type: bool
|
|
|
|
http_caching:
|
|
|
|
http_caching:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- Determines how upstream HTTP caches are instructed to handle any HTTP
|
|
|
|
- Determines how upstream HTTP caches are instructed to handle any HTTP
|
|
|
|
@ -409,6 +415,7 @@ class YumRepo(object):
|
|
|
|
'gpgcakey',
|
|
|
|
'gpgcakey',
|
|
|
|
'gpgcheck',
|
|
|
|
'gpgcheck',
|
|
|
|
'gpgkey',
|
|
|
|
'gpgkey',
|
|
|
|
|
|
|
|
'module_hotfixes',
|
|
|
|
'http_caching',
|
|
|
|
'http_caching',
|
|
|
|
'include',
|
|
|
|
'include',
|
|
|
|
'includepkgs',
|
|
|
|
'includepkgs',
|
|
|
|
@ -554,6 +561,7 @@ def main():
|
|
|
|
gpgcakey=dict(),
|
|
|
|
gpgcakey=dict(),
|
|
|
|
gpgcheck=dict(type='bool'),
|
|
|
|
gpgcheck=dict(type='bool'),
|
|
|
|
gpgkey=dict(type='list'),
|
|
|
|
gpgkey=dict(type='list'),
|
|
|
|
|
|
|
|
module_hotfixes=dict(type='bool'),
|
|
|
|
http_caching=dict(choices=['all', 'packages', 'none']),
|
|
|
|
http_caching=dict(choices=['all', 'packages', 'none']),
|
|
|
|
include=dict(),
|
|
|
|
include=dict(),
|
|
|
|
includepkgs=dict(type='list'),
|
|
|
|
includepkgs=dict(type='list'),
|
|
|
|
|