ansible-core 2.20.0rc1__py3-none-any.whl → 2.20.0rc3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansible-core might be problematic. Click here for more details.
- ansible/cli/arguments/option_helpers.py +9 -5
- ansible/config/base.yml +2 -0
- ansible/module_utils/ansible_release.py +1 -1
- ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1 +9 -7
- ansible/module_utils/six/__init__.py +0 -8
- ansible/modules/package_facts.py +5 -5
- ansible/plugins/connection/psrp.py +11 -6
- ansible/plugins/lookup/config.py +19 -36
- ansible/release.py +1 -1
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/METADATA +1 -1
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/RECORD +24 -24
- ansible_test/_data/completion/docker.txt +2 -2
- ansible_test/_data/requirements/sanity.pylint.txt +1 -1
- ansible_test/_internal/compat/packaging.py +2 -2
- ansible_test/_internal/compat/yaml.py +2 -2
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/WHEEL +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/COPYING +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/Apache-License.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/MIT-license.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/PSF-license.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
- {ansible_core-2.20.0rc1.dist-info → ansible_core-2.20.0rc3.dist-info}/top_level.txt +0 -0
|
@@ -44,6 +44,9 @@ class DeprecatedArgument:
|
|
|
44
44
|
option: str | None = None
|
|
45
45
|
"""The specific option string that is deprecated; None applies to all options for this argument."""
|
|
46
46
|
|
|
47
|
+
alternatives: str | None = None
|
|
48
|
+
"""The options to use instead."""
|
|
49
|
+
|
|
47
50
|
def is_deprecated(self, option: str) -> bool:
|
|
48
51
|
"""Return True if the given option is deprecated, otherwise False."""
|
|
49
52
|
return self.option is None or option == self.option
|
|
@@ -58,6 +61,7 @@ class DeprecatedArgument:
|
|
|
58
61
|
Display().deprecated( # pylint: disable=ansible-invalid-deprecated-version
|
|
59
62
|
msg=f'The {option!r} argument is deprecated.',
|
|
60
63
|
version=self.version,
|
|
64
|
+
help_text=f'Use {self.alternatives} instead.' if self.alternatives else None
|
|
61
65
|
)
|
|
62
66
|
|
|
63
67
|
|
|
@@ -419,7 +423,7 @@ def add_inventory_options(parser):
|
|
|
419
423
|
"""Add options for commands that utilize inventory"""
|
|
420
424
|
parser.add_argument('-i', '--inventory', '--inventory-file', dest='inventory', action="append",
|
|
421
425
|
help="specify inventory host path or comma separated host list",
|
|
422
|
-
deprecated=DeprecatedArgument(version='2.23', option='--inventory-file'))
|
|
426
|
+
deprecated=DeprecatedArgument(version='2.23', option='--inventory-file', alternatives="-i or --inventory"))
|
|
423
427
|
parser.add_argument('--list-hosts', dest='listhosts', action='store_true',
|
|
424
428
|
help='outputs a list of matching hosts; does not execute anything else')
|
|
425
429
|
parser.add_argument('-l', '--limit', default=C.DEFAULT_SUBSET, dest='subset',
|
|
@@ -444,10 +448,10 @@ def add_module_options(parser):
|
|
|
444
448
|
|
|
445
449
|
def add_output_options(parser):
|
|
446
450
|
"""Add options for commands which can change their output"""
|
|
447
|
-
parser.add_argument('-o', '--one-line', dest='one_line', action='store_true',
|
|
448
|
-
|
|
449
|
-
parser.add_argument('-t', '--tree', dest='tree', default=None,
|
|
450
|
-
|
|
451
|
+
parser.add_argument('-o', '--one-line', dest='one_line', action='store_true', help='condense output',
|
|
452
|
+
deprecated=DeprecatedArgument(version='2.23', alternatives='callback configuration to enable the oneline callback'))
|
|
453
|
+
parser.add_argument('-t', '--tree', dest='tree', default=None, help='log output to this directory',
|
|
454
|
+
deprecated=DeprecatedArgument(version='2.23', alternatives='callback configuration to enable the tree callback'))
|
|
451
455
|
|
|
452
456
|
|
|
453
457
|
def add_runas_options(parser):
|
ansible/config/base.yml
CHANGED
|
@@ -278,10 +278,16 @@ Function Add-CSharpType {
|
|
|
278
278
|
if ($PSCmdlet.ParameterSetName -eq "Module") {
|
|
279
279
|
$temp_path = $AnsibleModule.Tmpdir
|
|
280
280
|
$include_debug = $AnsibleModule.Verbosity -ge 3
|
|
281
|
+
|
|
282
|
+
# AnsibleModule will handle the cleanup after module execution
|
|
283
|
+
# which should be enough time for AVs or other processes to release
|
|
284
|
+
# any locks on the temp files.
|
|
285
|
+
$tmpdir_clean_is_error = $false
|
|
281
286
|
}
|
|
282
287
|
else {
|
|
283
288
|
$temp_path = [System.IO.Path]::GetTempPath()
|
|
284
289
|
$include_debug = $IncludeDebugInfo.IsPresent
|
|
290
|
+
$tmpdir_clean_is_error = $true
|
|
285
291
|
}
|
|
286
292
|
$temp_path = Join-Path -Path $temp_path -ChildPath ([Guid]::NewGuid().Guid)
|
|
287
293
|
|
|
@@ -388,17 +394,13 @@ Function Add-CSharpType {
|
|
|
388
394
|
}
|
|
389
395
|
finally {
|
|
390
396
|
# Try to delete the temp path, if this fails and we are running
|
|
391
|
-
# with a module object
|
|
397
|
+
# with a module object, ignore and let it cleanup later.
|
|
392
398
|
try {
|
|
393
399
|
[System.IO.Directory]::Delete($temp_path, $true)
|
|
394
400
|
}
|
|
395
401
|
catch {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
$AnsibleModule.Warn("$msg Files may still be present after the task is complete. Error: $_")
|
|
399
|
-
}
|
|
400
|
-
else {
|
|
401
|
-
throw "$msg Error: $_"
|
|
402
|
+
if ($tmpdir_clean_is_error) {
|
|
403
|
+
throw "Failed to cleanup temporary directory '$temp_path' used for compiling C# code. Error: $_"
|
|
402
404
|
}
|
|
403
405
|
}
|
|
404
406
|
}
|
|
@@ -33,14 +33,6 @@ import operator
|
|
|
33
33
|
import sys
|
|
34
34
|
import types
|
|
35
35
|
|
|
36
|
-
from ansible.module_utils.common import warnings as _warnings
|
|
37
|
-
|
|
38
|
-
_warnings.deprecate(
|
|
39
|
-
msg="The `ansible.module_utils.six` module is deprecated.",
|
|
40
|
-
help_text="Use the Python standard library equivalent instead.",
|
|
41
|
-
version="2.24",
|
|
42
|
-
)
|
|
43
|
-
|
|
44
36
|
# The following makes it easier for us to script updates of the bundled code. It is not part of
|
|
45
37
|
# upstream six
|
|
46
38
|
_BUNDLED_METADATA = {"pypi_name": "six", "version": "1.17.0"}
|
ansible/modules/package_facts.py
CHANGED
|
@@ -278,11 +278,11 @@ class RPM(RespawningLibMgr):
|
|
|
278
278
|
return self._lib.TransactionSet().dbMatch()
|
|
279
279
|
|
|
280
280
|
def get_package_details(self, package):
|
|
281
|
-
return dict(name=package[self._lib.RPMTAG_NAME],
|
|
282
|
-
version=package[self._lib.RPMTAG_VERSION],
|
|
283
|
-
release=package[self._lib.RPMTAG_RELEASE],
|
|
284
|
-
epoch=package[self._lib.RPMTAG_EPOCH],
|
|
285
|
-
arch=package[self._lib.RPMTAG_ARCH],)
|
|
281
|
+
return dict(name=to_text(package[self._lib.RPMTAG_NAME]),
|
|
282
|
+
version=to_text(package[self._lib.RPMTAG_VERSION]),
|
|
283
|
+
release=to_text(package[self._lib.RPMTAG_RELEASE]),
|
|
284
|
+
epoch=to_text(package[self._lib.RPMTAG_EPOCH]),
|
|
285
|
+
arch=to_text(package[self._lib.RPMTAG_ARCH]),)
|
|
286
286
|
|
|
287
287
|
|
|
288
288
|
class APT(RespawningLibMgr):
|
|
@@ -331,7 +331,7 @@ try:
|
|
|
331
331
|
from pypsrp.host import PSHost, PSHostUserInterface
|
|
332
332
|
from pypsrp.powershell import PowerShell, RunspacePool
|
|
333
333
|
from pypsrp.wsman import WSMan
|
|
334
|
-
from requests.exceptions import ConnectionError, ConnectTimeout
|
|
334
|
+
from requests.exceptions import ConnectionError, ConnectTimeout, ReadTimeout
|
|
335
335
|
except ImportError as err:
|
|
336
336
|
HAS_PYPSRP = False
|
|
337
337
|
PYPSRP_IMP_ERR = err
|
|
@@ -479,11 +479,16 @@ class Connection(ConnectionBase):
|
|
|
479
479
|
pwsh_in_data = in_data
|
|
480
480
|
display.vvv(u"PSRP: EXEC %s" % script, host=self._psrp_host)
|
|
481
481
|
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
482
|
+
try:
|
|
483
|
+
rc, stdout, stderr = self._exec_psrp_script(
|
|
484
|
+
script=script,
|
|
485
|
+
input_data=pwsh_in_data.splitlines() if pwsh_in_data else None,
|
|
486
|
+
arguments=script_args,
|
|
487
|
+
)
|
|
488
|
+
except ReadTimeout as e:
|
|
489
|
+
raise AnsibleConnectionFailure(
|
|
490
|
+
"HTTP read timeout during PSRP script execution"
|
|
491
|
+
) from e
|
|
487
492
|
return rc, stdout, stderr
|
|
488
493
|
|
|
489
494
|
def put_file(self, in_path: str, out_path: str) -> None:
|
ansible/plugins/lookup/config.py
CHANGED
|
@@ -88,31 +88,6 @@ from ansible.errors import AnsibleError, AnsibleUndefinedConfigEntry
|
|
|
88
88
|
from ansible.plugins.lookup import LookupBase
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
def _get_plugin_config(pname, ptype, config, variables):
|
|
92
|
-
# plugin creates settings on load, this is cached so not too expensive to redo
|
|
93
|
-
loader = getattr(plugin_loader, '%s_loader' % ptype)
|
|
94
|
-
p = loader.get(pname, class_only=True)
|
|
95
|
-
|
|
96
|
-
if p is None:
|
|
97
|
-
raise AnsibleError(f"Unable to load {ptype} plugin {pname!r}.")
|
|
98
|
-
|
|
99
|
-
result, origin = C.config.get_config_value_and_origin(config, plugin_type=ptype, plugin_name=p._load_name, variables=variables)
|
|
100
|
-
|
|
101
|
-
return result, origin
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
def _get_global_config(config):
|
|
105
|
-
try:
|
|
106
|
-
result = getattr(C, config)
|
|
107
|
-
except AttributeError:
|
|
108
|
-
raise AnsibleUndefinedConfigEntry(f"Setting {config!r} does not exist.") from None
|
|
109
|
-
|
|
110
|
-
if callable(result):
|
|
111
|
-
raise ValueError(f"Invalid setting {config!r} attempted.")
|
|
112
|
-
|
|
113
|
-
return result
|
|
114
|
-
|
|
115
|
-
|
|
116
91
|
class LookupModule(LookupBase):
|
|
117
92
|
|
|
118
93
|
def run(self, terms, variables=None, **kwargs):
|
|
@@ -135,18 +110,26 @@ class LookupModule(LookupBase):
|
|
|
135
110
|
|
|
136
111
|
result = Sentinel
|
|
137
112
|
origin = None
|
|
113
|
+
|
|
114
|
+
# plugin creates settings on load, we ensure that happens here
|
|
115
|
+
if pname:
|
|
116
|
+
# this is cached so not too expensive
|
|
117
|
+
loader = getattr(plugin_loader, f'{ptype}_loader')
|
|
118
|
+
p = loader.get(pname, class_only=True)
|
|
119
|
+
if p is None:
|
|
120
|
+
raise AnsibleError(f"Unable to load {ptype} plugin {pname!r}.")
|
|
138
121
|
try:
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
122
|
+
result, origin = C.config.get_config_value_and_origin(term, plugin_type=ptype, plugin_name=pname, variables=variables)
|
|
123
|
+
except AnsibleUndefinedConfigEntry as e:
|
|
124
|
+
match missing:
|
|
125
|
+
case 'error':
|
|
126
|
+
raise
|
|
127
|
+
case 'skip':
|
|
128
|
+
pass
|
|
129
|
+
case 'warn':
|
|
130
|
+
self._display.error_as_warning(msg=f"Skipping {term}.", exception=e)
|
|
131
|
+
case _:
|
|
132
|
+
raise AnsibleError(f"Invalid option for error handling, missing must be error, warn or skip, got: {missing}.") from e
|
|
150
133
|
|
|
151
134
|
if result is not Sentinel:
|
|
152
135
|
if show_origin:
|
ansible/release.py
CHANGED
|
@@ -3,7 +3,7 @@ ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
|
|
|
3
3
|
ansible/constants.py,sha256=qef45QpHi-yFFMvllvNKmqFpXdKKr304e5fEZnjgwZc,7989
|
|
4
4
|
ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
|
|
5
5
|
ansible/keyword_desc.yml,sha256=i3d_5dCS8Qsy5DNyrZnPHupkFnj6U3onpgEe2VqS8AY,7273
|
|
6
|
-
ansible/release.py,sha256=
|
|
6
|
+
ansible/release.py,sha256=zUvA4C7qqj63fZLJtKJlynllPdyRLAfyzroDGYMJCtw,843
|
|
7
7
|
ansible/_internal/__init__.py,sha256=pLZlT_Cm_fKBKDcWB5g0KZt2XWKZGlC7sfytkuUTbJU,2186
|
|
8
8
|
ansible/_internal/_collection_proxy.py,sha256=Dm7iePwbX9fHPCYsadPLek47eiYSJSQkfcmSWHI8kr8,1154
|
|
9
9
|
ansible/_internal/_display_utils.py,sha256=2dOknOQpt_GW2AkoMUJxPvmQUCAVYv911KwX6Dwrh0c,5651
|
|
@@ -87,7 +87,7 @@ ansible/cli/playbook.py,sha256=F8v8t4v2dIpSVOlLb2RtvoHC3MraKjPbq1j01OOrQrA,10480
|
|
|
87
87
|
ansible/cli/pull.py,sha256=3tKVqrh3YRnS-EaAYSVnOGIT57GUPKMhxVcmUbzdipM,18355
|
|
88
88
|
ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
|
|
89
89
|
ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
|
|
90
|
-
ansible/cli/arguments/option_helpers.py,sha256=
|
|
90
|
+
ansible/cli/arguments/option_helpers.py,sha256=dy9XtN6UVAI6L1ICzxRcvJlL1geDwPUDf_ua3eseJXo,24780
|
|
91
91
|
ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
92
|
ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=LVRkDIrsgL_72dJ7ZzZVn6On9u_SASNsh-tgCog8ZxU,13121
|
|
93
93
|
ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -96,7 +96,7 @@ ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,10
|
|
|
96
96
|
ansible/compat/importlib_resources.py,sha256=75SJApiBzBKuBDknj81vdfzSJSxc2Pi4YvgQkmmGtew,542
|
|
97
97
|
ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
98
|
ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
|
|
99
|
-
ansible/config/base.yml,sha256=
|
|
99
|
+
ansible/config/base.yml,sha256=pvY_Fx_BvDFuvA_RcgCfQW4LHJsqiMpiSN62QT1FS6U,90093
|
|
100
100
|
ansible/config/manager.py,sha256=Ll5GW1lfIuyu4UKr4nBVNot-lu3qfjvD5ntBRMiJbus,32459
|
|
101
101
|
ansible/errors/__init__.py,sha256=W1s19PaheqXMI2yKnZCuaKKjSAJRPgU1_xF2_J9B1NU,16353
|
|
102
102
|
ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
|
@@ -212,7 +212,7 @@ ansible/inventory/host.py,sha256=cZw906LeMYe6oF3ZxW6K2HWoW2Qc0jxHssg_C8cRumE,493
|
|
|
212
212
|
ansible/inventory/manager.py,sha256=IiODOOpm5iGpAHn5Sjap-_XTX0pZsXrQCevEaFNF_Sc,31743
|
|
213
213
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
214
|
ansible/module_utils/_text.py,sha256=MjBVvIttHxQbicW6EY9F0B7GTbhjyiVDNt92fCZnQOw,1207
|
|
215
|
-
ansible/module_utils/ansible_release.py,sha256=
|
|
215
|
+
ansible/module_utils/ansible_release.py,sha256=zUvA4C7qqj63fZLJtKJlynllPdyRLAfyzroDGYMJCtw,843
|
|
216
216
|
ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
|
|
217
217
|
ansible/module_utils/basic.py,sha256=GsM5pubhLqRjdXE21LxdbbzOgRDrQm6a9bJ-_-kHHSI,90082
|
|
218
218
|
ansible/module_utils/connection.py,sha256=5RE7BmO58yvutG4Z1sVNsb1Km9ea1hA37HRcPuSJxFA,7575
|
|
@@ -375,7 +375,7 @@ ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH
|
|
|
375
375
|
ansible/module_utils/facts/virtual/sysctl.py,sha256=suvfSdKL5e_AAPCxE_EQRiqNHzpMJYSucT4URyn8Qxw,4741
|
|
376
376
|
ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
377
377
|
ansible/module_utils/parsing/convert_bool.py,sha256=XDOMp6RFXpDNFdaCjswtcdcOYrSgjP4LZ6-BmIKpKMA,1364
|
|
378
|
-
ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=
|
|
378
|
+
ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=Pu4r0EJduybRublOWrs0sr0-zD6RfZUDqwJgntUFDuU,20218
|
|
379
379
|
ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
|
|
380
380
|
ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
|
|
381
381
|
ansible/module_utils/powershell/Ansible.ModuleUtils.CamelConversion.psm1,sha256=QHjUrv-qWwm3j3QJ-sN844f7B-Dzoadd6mxpQvFasgA,2456
|
|
@@ -387,7 +387,7 @@ ansible/module_utils/powershell/Ansible.ModuleUtils.PrivilegeUtil.psm1,sha256=1u
|
|
|
387
387
|
ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1,sha256=TX70j9dlg_SGVcb2HrHxakrkZzsyxPtaIeKaRevgy54,3639
|
|
388
388
|
ansible/module_utils/powershell/Ansible.ModuleUtils.WebRequest.psm1,sha256=4Wb0K_GO8maVpQYpdDBrUvl7YgkReeunXSNM1N6nq74,19182
|
|
389
389
|
ansible/module_utils/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
-
ansible/module_utils/six/__init__.py,sha256=
|
|
390
|
+
ansible/module_utils/six/__init__.py,sha256=R8WpTF9a4x8RcBnCbS4StADOgbh-sCncsQkvQdik78w,35132
|
|
391
391
|
ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
392
|
ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
|
|
393
393
|
ansible/modules/apt.py,sha256=267kolDkjiXbO80Oum2wrM96pQQJLHk3NROTe2fCF8w,63056
|
|
@@ -431,7 +431,7 @@ ansible/modules/lineinfile.py,sha256=x0nR7uJ5B28Ckap_Yo_3zMabc742jXj59Dk9qF616dQ
|
|
|
431
431
|
ansible/modules/meta.py,sha256=0oLfvydcj8XeZsRR8yoRzgTINaPsEfl3-jxp1T-lzDM,7264
|
|
432
432
|
ansible/modules/mount_facts.py,sha256=vy9Eeu17_EMsJbxgc23pa7DDXwU8rg11WFJTqcLjMXo,26018
|
|
433
433
|
ansible/modules/package.py,sha256=xwiE0SDoz1Drrh_UjsRi7naAY9Xp4hpO_TbmLio2EFg,3877
|
|
434
|
-
ansible/modules/package_facts.py,sha256=
|
|
434
|
+
ansible/modules/package_facts.py,sha256=LmwEHbKwOorRzFGxVMXMhwq2pjFPvGiDYUiJhWFrUX0,17328
|
|
435
435
|
ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
|
|
436
436
|
ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
|
|
437
437
|
ansible/modules/pip.py,sha256=N3vI-WcWqhxk8lgPRCYiYg7ixKoMWQ6N8w__lXxDDsI,32768
|
|
@@ -552,7 +552,7 @@ ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42
|
|
|
552
552
|
ansible/plugins/connection/__init__.py,sha256=2pjLkoi6lpjebgqyWqkl4rAlBTmHDWlU1McVMsnRx1E,19456
|
|
553
553
|
ansible/plugins/connection/local.py,sha256=4Ebuo-qkDE7lz0CtSYPHjQ_2ofRfRt8PFQ928M_grdk,12041
|
|
554
554
|
ansible/plugins/connection/paramiko_ssh.py,sha256=F6sjILG7nnC4cka-7kQotBcT_1yzU4WeaOTMKa3-OUQ,27681
|
|
555
|
-
ansible/plugins/connection/psrp.py,sha256=
|
|
555
|
+
ansible/plugins/connection/psrp.py,sha256=9aTA3XMpmVHwo0cQCK4FWswZP7t6FYZ2JzCW9VMXm_A,30847
|
|
556
556
|
ansible/plugins/connection/ssh.py,sha256=lYNbCaPB1AVs6E7_315AjCU9wyFDJZhgVkYOkVkr8wU,71589
|
|
557
557
|
ansible/plugins/connection/winrm.py,sha256=lsEE0b-J7tpmLDpWnyOurEOoqXgOWGbHEVQkG4Xbss4,38390
|
|
558
558
|
ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -662,7 +662,7 @@ ansible/plugins/inventory/script.py,sha256=kYQdNHM16TZXOGNNHEXYC0xuaDknylcZcj3DQ
|
|
|
662
662
|
ansible/plugins/inventory/toml.py,sha256=NiWAgbbLXXGD8Y1g83_LYve2sVg-dM68--u1KvWwHKY,5364
|
|
663
663
|
ansible/plugins/inventory/yaml.py,sha256=td4ELEH0tk7CG94NsKL4lehJTtMpzNpGKJ_iA_iOzuw,7471
|
|
664
664
|
ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
|
|
665
|
-
ansible/plugins/lookup/config.py,sha256=
|
|
665
|
+
ansible/plugins/lookup/config.py,sha256=3ltQo3kECUM-BDNxT0HCUg7vaHYltuszdEOdOZHIuCw,5857
|
|
666
666
|
ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
|
|
667
667
|
ansible/plugins/lookup/dict.py,sha256=9LTeK9YZOG4U9l-2gy5Jp1sDqsXRlf4F3WbULV17pjE,2139
|
|
668
668
|
ansible/plugins/lookup/env.py,sha256=IEMZs0p_rLR4jcfJ-sNqJT8vijnH4-MNyNXM_ttuqJ4,2620
|
|
@@ -790,16 +790,16 @@ ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
|
|
|
790
790
|
ansible/vars/manager.py,sha256=bsh_Ie5qSPxySkpxtz37n3uXaPcC4bDbDHN8tcSf4xo,28306
|
|
791
791
|
ansible/vars/plugins.py,sha256=Ry0wY-Y7lMlQgowItFngE6EjP_6sFcUEjvS0tGocweg,3127
|
|
792
792
|
ansible/vars/reserved.py,sha256=NgxlMBm_tloqDVb5TEX4eGhpYsz_AO6-Fmyi3kJpIFk,3107
|
|
793
|
-
ansible_core-2.20.
|
|
794
|
-
ansible_core-2.20.
|
|
795
|
-
ansible_core-2.20.
|
|
796
|
-
ansible_core-2.20.
|
|
797
|
-
ansible_core-2.20.
|
|
798
|
-
ansible_core-2.20.
|
|
793
|
+
ansible_core-2.20.0rc3.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
794
|
+
ansible_core-2.20.0rc3.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
|
795
|
+
ansible_core-2.20.0rc3.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
|
|
796
|
+
ansible_core-2.20.0rc3.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
|
|
797
|
+
ansible_core-2.20.0rc3.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
|
798
|
+
ansible_core-2.20.0rc3.dist-info/licenses/licenses/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
|
|
799
799
|
ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
|
|
800
800
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
801
801
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
802
|
-
ansible_test/_data/completion/docker.txt,sha256=
|
|
802
|
+
ansible_test/_data/completion/docker.txt,sha256=HQNcpTK60cMHSE47Ns7xo2v54YTaiNHB4RCHUxljBSo,685
|
|
803
803
|
ansible_test/_data/completion/network.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
804
804
|
ansible_test/_data/completion/remote.txt,sha256=GQWNAYsNp1KaHSHvWnWDMmQe5eLe_ZsHgls39rRaofw,972
|
|
805
805
|
ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
|
|
@@ -833,7 +833,7 @@ ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dK
|
|
|
833
833
|
ansible_test/_data/requirements/sanity.pep8.txt,sha256=V8RHO5D99G-DfgqfnSIGhLI3mlQHbmQIu8Lonijbra8,113
|
|
834
834
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
|
|
835
835
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
|
|
836
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
|
836
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=G36wn5PJStr-t3srx_p73Di1XbIi5C5WOtn3LWcXCq8,215
|
|
837
837
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
|
838
838
|
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=bNL2B-Y8kLGx81OxnqPRFn0DiGKrclW_OS2oAyRHDnU,150
|
|
839
839
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
|
|
@@ -987,8 +987,8 @@ ansible_test/_internal/commands/sanity/yamllint.py,sha256=B0PBgrT0bBIhvee6yM1qFW
|
|
|
987
987
|
ansible_test/_internal/commands/shell/__init__.py,sha256=5_mAVu8oDA9JSSE8vGZJR3sg0OaEd9BPeVs7xoPJJ1Q,6712
|
|
988
988
|
ansible_test/_internal/commands/units/__init__.py,sha256=CeOcMhEfO0hgBm68LeZoIhycK_tYTtzOP8xaLhnkyJk,11839
|
|
989
989
|
ansible_test/_internal/compat/__init__.py,sha256=YHcINH9sH7EXE0TBSm_O6Z1TRwiSr2xmnBRqP5Wlpik,89
|
|
990
|
-
ansible_test/_internal/compat/packaging.py,sha256=
|
|
991
|
-
ansible_test/_internal/compat/yaml.py,sha256=
|
|
990
|
+
ansible_test/_internal/compat/packaging.py,sha256=1NhpEf-y5K4NuhRc_SRh5cMGn_5asOCvgt1fl3Of2KY,583
|
|
991
|
+
ansible_test/_internal/compat/yaml.py,sha256=hNfJSMiVSTmUUiOcVZ_1L0zCAOCP-nmrZNk5Cnj1CDc,595
|
|
992
992
|
ansible_test/_internal/dev/__init__.py,sha256=NPM0p0CIFmNCq8Lc9HFBb5HhBxHivXT3YWap80xtSlA,139
|
|
993
993
|
ansible_test/_internal/dev/container_probe.py,sha256=Cti6uoU81h7QvbILhAo9L7RV2wNXiZDvpF8gyNOAddo,7820
|
|
994
994
|
ansible_test/_internal/provider/__init__.py,sha256=xCOhN6XKfGzvIYfeUNaB3r1-50orIgq9BzsWQ1PL1AA,2240
|
|
@@ -1091,8 +1091,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
|
|
|
1091
1091
|
ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
|
|
1092
1092
|
ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
|
|
1093
1093
|
ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
|
|
1094
|
-
ansible_core-2.20.
|
|
1095
|
-
ansible_core-2.20.
|
|
1096
|
-
ansible_core-2.20.
|
|
1097
|
-
ansible_core-2.20.
|
|
1098
|
-
ansible_core-2.20.
|
|
1094
|
+
ansible_core-2.20.0rc3.dist-info/METADATA,sha256=GpwWhG3sZJAEC3Hu_TSgBgtAR_j1-NSPTGeBjngf-as,7733
|
|
1095
|
+
ansible_core-2.20.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1096
|
+
ansible_core-2.20.0rc3.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
|
1097
|
+
ansible_core-2.20.0rc3.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
|
1098
|
+
ansible_core-2.20.0rc3.dist-info/RECORD,,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
base image=quay.io/ansible/base-test-container:v2.20-2 python=3.14,3.9,3.10,3.11,3.12,3.13
|
|
2
|
-
default image=quay.io/ansible/default-test-container:v2.20-
|
|
3
|
-
default image=quay.io/ansible/ansible-core-test-container:v2.20-
|
|
2
|
+
default image=quay.io/ansible/default-test-container:v2.20-4 python=3.14,3.9,3.10,3.11,3.12,3.13 context=collection
|
|
3
|
+
default image=quay.io/ansible/ansible-core-test-container:v2.20-4 python=3.14,3.9,3.10,3.11,3.12,3.13 context=ansible-core
|
|
4
4
|
alpine322 image=quay.io/ansible/alpine-test-container:3.22-v2.20-1 python=3.12 cgroup=none audit=none
|
|
5
5
|
fedora42 image=quay.io/ansible/fedora-test-container:42-v2.20-1 python=3.13 cgroup=v2-only
|
|
6
6
|
ubuntu2204 image=quay.io/ansible/ubuntu-test-container:22.04-v2.20-1 python=3.10
|
|
@@ -12,8 +12,8 @@ try:
|
|
|
12
12
|
|
|
13
13
|
SpecifierSet: t.Optional[t.Type[specifiers.SpecifierSet]] = specifiers.SpecifierSet
|
|
14
14
|
Version: t.Optional[t.Type[version.Version]] = version.Version
|
|
15
|
-
PACKAGING_IMPORT_ERROR = None
|
|
15
|
+
PACKAGING_IMPORT_ERROR = None # pylint: disable=invalid-name
|
|
16
16
|
except ImportError as ex:
|
|
17
17
|
SpecifierSet = None # pylint: disable=invalid-name
|
|
18
18
|
Version = None # pylint: disable=invalid-name
|
|
19
|
-
PACKAGING_IMPORT_ERROR = ex
|
|
19
|
+
PACKAGING_IMPORT_ERROR = ex # pylint: disable=invalid-name
|
|
@@ -11,10 +11,10 @@ from functools import (
|
|
|
11
11
|
try:
|
|
12
12
|
import yaml as _yaml
|
|
13
13
|
|
|
14
|
-
YAML_IMPORT_ERROR = None
|
|
14
|
+
YAML_IMPORT_ERROR = None # pylint: disable=invalid-name
|
|
15
15
|
except ImportError as ex:
|
|
16
16
|
yaml_load = None # pylint: disable=invalid-name
|
|
17
|
-
YAML_IMPORT_ERROR = ex
|
|
17
|
+
YAML_IMPORT_ERROR = ex # pylint: disable=invalid-name
|
|
18
18
|
else:
|
|
19
19
|
try:
|
|
20
20
|
_SafeLoader: t.Union[t.Type[_yaml.CSafeLoader], t.Type[_yaml.SafeLoader]] = _yaml.CSafeLoader
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|