ansible-core 2.19.4rc1__py3-none-any.whl → 2.20.0__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/_internal/__init__.py +1 -4
- ansible/_internal/_ansiballz/_builder.py +1 -3
- ansible/_internal/_collection_proxy.py +7 -9
- ansible/_internal/_json/__init__.py +3 -4
- ansible/_internal/_templating/_engine.py +1 -1
- ansible/_internal/_templating/_jinja_plugins.py +1 -2
- ansible/_internal/_wrapt.py +105 -301
- ansible/cli/__init__.py +11 -10
- ansible/cli/adhoc.py +1 -2
- ansible/cli/arguments/option_helpers.py +1 -1
- ansible/cli/config.py +5 -6
- ansible/cli/doc.py +67 -67
- ansible/cli/galaxy.py +15 -24
- ansible/cli/inventory.py +0 -1
- ansible/cli/playbook.py +0 -1
- ansible/cli/pull.py +0 -1
- ansible/cli/scripts/ansible_connection_cli_stub.py +1 -1
- ansible/config/base.yml +1 -25
- ansible/config/manager.py +0 -2
- ansible/executor/play_iterator.py +42 -20
- ansible/executor/playbook_executor.py +0 -9
- ansible/executor/task_executor.py +26 -18
- ansible/executor/task_queue_manager.py +1 -3
- ansible/galaxy/api.py +33 -80
- ansible/galaxy/collection/__init__.py +11 -21
- ansible/galaxy/dependency_resolution/__init__.py +10 -9
- ansible/galaxy/dependency_resolution/dataclasses.py +86 -70
- ansible/galaxy/dependency_resolution/providers.py +54 -134
- ansible/galaxy/dependency_resolution/versioning.py +2 -4
- ansible/galaxy/role.py +1 -33
- ansible/inventory/manager.py +2 -3
- ansible/keyword_desc.yml +0 -3
- ansible/module_utils/_internal/_datatag/__init__.py +2 -10
- ansible/module_utils/_internal/_no_six.py +86 -0
- ansible/module_utils/_text.py +28 -8
- ansible/module_utils/ansible_release.py +2 -2
- ansible/module_utils/basic.py +26 -23
- ansible/module_utils/common/_collections_compat.py +11 -2
- ansible/module_utils/common/collections.py +8 -3
- ansible/module_utils/common/dict_transformations.py +1 -2
- ansible/module_utils/common/network.py +4 -2
- ansible/module_utils/common/parameters.py +32 -41
- ansible/module_utils/common/text/converters.py +109 -23
- ansible/module_utils/common/text/formatters.py +6 -2
- ansible/module_utils/common/validation.py +11 -9
- ansible/module_utils/connection.py +8 -3
- ansible/module_utils/facts/hardware/linux.py +23 -7
- ansible/module_utils/facts/hardware/netbsd.py +1 -1
- ansible/module_utils/facts/hardware/sunos.py +2 -1
- ansible/module_utils/facts/packages.py +6 -2
- ansible/module_utils/facts/system/distribution.py +2 -1
- ansible/module_utils/facts/system/env.py +6 -3
- ansible/module_utils/facts/system/local.py +3 -1
- ansible/module_utils/parsing/convert_bool.py +6 -2
- ansible/module_utils/service.py +2 -3
- ansible/module_utils/six/__init__.py +11 -6
- ansible/module_utils/yumdnf.py +0 -5
- ansible/modules/apt.py +18 -13
- ansible/modules/apt_repository.py +1 -1
- ansible/modules/assemble.py +5 -9
- ansible/modules/blockinfile.py +39 -23
- ansible/modules/cron.py +26 -35
- ansible/modules/deb822_repository.py +83 -12
- ansible/modules/dnf.py +3 -7
- ansible/modules/dnf5.py +4 -6
- ansible/modules/expect.py +0 -3
- ansible/modules/find.py +1 -2
- ansible/modules/get_url.py +1 -1
- ansible/modules/git.py +4 -5
- ansible/modules/include_vars.py +1 -1
- ansible/modules/known_hosts.py +7 -1
- ansible/modules/lineinfile.py +71 -63
- ansible/modules/package_facts.py +1 -1
- ansible/modules/pip.py +8 -2
- ansible/modules/replace.py +6 -6
- ansible/modules/service.py +3 -4
- ansible/modules/stat.py +20 -0
- ansible/modules/uri.py +9 -10
- ansible/modules/user.py +1 -2
- ansible/modules/wait_for.py +2 -2
- ansible/modules/wait_for_connection.py +2 -1
- ansible/modules/yum_repository.py +1 -16
- ansible/parsing/dataloader.py +24 -31
- ansible/parsing/vault/__init__.py +1 -2
- ansible/playbook/base.py +8 -56
- ansible/playbook/block.py +0 -60
- ansible/playbook/collectionsearch.py +1 -2
- ansible/playbook/handler.py +1 -7
- ansible/playbook/helpers.py +0 -7
- ansible/playbook/included_file.py +1 -1
- ansible/playbook/play.py +102 -36
- ansible/playbook/play_context.py +4 -0
- ansible/playbook/role/__init__.py +10 -65
- ansible/playbook/role/definition.py +3 -4
- ansible/playbook/role/include.py +2 -3
- ansible/playbook/role/metadata.py +1 -12
- ansible/playbook/role/requirement.py +1 -2
- ansible/playbook/role_include.py +1 -2
- ansible/playbook/taggable.py +16 -5
- ansible/playbook/task.py +11 -50
- ansible/plugins/action/__init__.py +20 -19
- ansible/plugins/action/add_host.py +1 -2
- ansible/plugins/action/fetch.py +3 -5
- ansible/plugins/action/group_by.py +1 -2
- ansible/plugins/action/include_vars.py +20 -22
- ansible/plugins/action/script.py +1 -3
- ansible/plugins/action/template.py +1 -2
- ansible/plugins/action/uri.py +4 -2
- ansible/plugins/cache/__init__.py +1 -0
- ansible/plugins/callback/__init__.py +13 -6
- ansible/plugins/connection/__init__.py +3 -7
- ansible/plugins/connection/local.py +2 -3
- ansible/plugins/connection/psrp.py +0 -2
- ansible/plugins/connection/ssh.py +2 -7
- ansible/plugins/connection/winrm.py +0 -2
- ansible/plugins/doc_fragments/result_format_callback.py +15 -0
- ansible/plugins/filter/core.py +4 -5
- ansible/plugins/filter/encryption.py +3 -27
- ansible/plugins/filter/mathstuff.py +1 -2
- ansible/plugins/filter/to_nice_yaml.yml +31 -3
- ansible/plugins/filter/to_yaml.yml +29 -12
- ansible/plugins/inventory/__init__.py +1 -2
- ansible/plugins/inventory/toml.py +3 -6
- ansible/plugins/inventory/yaml.py +1 -2
- ansible/plugins/loader.py +3 -4
- ansible/plugins/lookup/password.py +1 -2
- ansible/plugins/lookup/subelements.py +2 -3
- ansible/plugins/lookup/url.py +1 -1
- ansible/plugins/lookup/varnames.py +1 -2
- ansible/plugins/shell/__init__.py +9 -4
- ansible/plugins/shell/powershell.py +8 -24
- ansible/plugins/strategy/__init__.py +5 -2
- ansible/plugins/test/core.py +4 -1
- ansible/plugins/test/falsy.yml +1 -1
- ansible/plugins/test/regex.yml +18 -6
- ansible/plugins/test/truthy.yml +1 -1
- ansible/release.py +2 -2
- ansible/template/__init__.py +3 -7
- ansible/utils/collection_loader/_collection_config.py +5 -0
- ansible/utils/collection_loader/_collection_finder.py +11 -14
- ansible/utils/context_objects.py +7 -4
- ansible/utils/display.py +7 -6
- ansible/utils/encrypt.py +0 -5
- ansible/utils/helpers.py +6 -2
- ansible/utils/jsonrpc.py +7 -3
- ansible/utils/plugin_docs.py +49 -38
- ansible/utils/ssh_functions.py +0 -19
- ansible/utils/unsafe_proxy.py +7 -7
- ansible/vars/clean.py +2 -3
- ansible/vars/manager.py +28 -22
- ansible/vars/plugins.py +1 -31
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/METADATA +4 -4
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/RECORD +213 -214
- ansible_test/_data/completion/docker.txt +7 -7
- ansible_test/_data/completion/network.txt +0 -1
- ansible_test/_data/completion/remote.txt +4 -4
- ansible_test/_data/requirements/ansible-test.txt +1 -1
- ansible_test/_data/requirements/ansible.txt +1 -1
- ansible_test/_data/requirements/sanity.ansible-doc.txt +2 -2
- ansible_test/_data/requirements/sanity.changelog.txt +2 -2
- ansible_test/_data/requirements/sanity.import.plugin.txt +2 -2
- ansible_test/_data/requirements/sanity.import.txt +1 -1
- ansible_test/_data/requirements/sanity.integration-aliases.txt +1 -1
- ansible_test/_data/requirements/sanity.pep8.txt +1 -1
- ansible_test/_data/requirements/sanity.pylint.txt +6 -6
- ansible_test/_data/requirements/sanity.runtime-metadata.txt +1 -1
- ansible_test/_data/requirements/sanity.validate-modules.txt +2 -2
- ansible_test/_data/requirements/sanity.yamllint.txt +1 -1
- ansible_test/_internal/cache.py +2 -5
- ansible_test/_internal/cli/compat.py +1 -1
- ansible_test/_internal/commands/coverage/combine.py +1 -3
- ansible_test/_internal/commands/integration/__init__.py +3 -7
- ansible_test/_internal/commands/integration/cloud/httptester.py +1 -1
- ansible_test/_internal/commands/integration/coverage.py +1 -3
- ansible_test/_internal/commands/integration/filters.py +5 -10
- ansible_test/_internal/commands/sanity/pylint.py +11 -0
- ansible_test/_internal/commands/sanity/validate_modules.py +1 -5
- ansible_test/_internal/commands/units/__init__.py +1 -13
- ansible_test/_internal/compat/packaging.py +2 -2
- ansible_test/_internal/compat/yaml.py +2 -2
- ansible_test/_internal/completion.py +2 -5
- ansible_test/_internal/config.py +2 -7
- ansible_test/_internal/coverage_util.py +1 -1
- ansible_test/_internal/delegation.py +2 -0
- ansible_test/_internal/docker_util.py +1 -1
- ansible_test/_internal/host_profiles.py +6 -11
- ansible_test/_internal/provider/__init__.py +2 -5
- ansible_test/_internal/provisioning.py +2 -5
- ansible_test/_internal/pypi_proxy.py +1 -1
- ansible_test/_internal/python_requirements.py +1 -1
- ansible_test/_internal/target.py +2 -6
- ansible_test/_internal/thread.py +1 -4
- ansible_test/_internal/util.py +9 -14
- ansible_test/_util/controller/sanity/code-smell/runtime-metadata.py +14 -19
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +48 -45
- ansible_test/_util/controller/sanity/pylint/plugins/string_format.py +9 -7
- ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py +51 -37
- ansible_test/_util/controller/sanity/validate-modules/validate_modules/main.py +31 -18
- ansible_test/_util/controller/sanity/validate-modules/validate_modules/module_args.py +1 -2
- ansible_test/_util/controller/sanity/validate-modules/validate_modules/schema.py +59 -71
- ansible_test/_util/controller/sanity/validate-modules/validate_modules/utils.py +1 -2
- ansible_test/_util/target/cli/ansible_test_cli_stub.py +4 -2
- ansible_test/_util/target/common/constants.py +2 -2
- ansible_test/_util/target/setup/bootstrap.sh +0 -6
- ansible/utils/py3compat.py +0 -27
- ansible_test/_data/pytest/config/legacy.ini +0 -4
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/WHEEL +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/COPYING +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/licenses/Apache-License.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/licenses/MIT-license.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/licenses/PSF-license.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
- {ansible_core-2.19.4rc1.dist-info → ansible_core-2.20.0.dist-info}/top_level.txt +0 -0
|
@@ -2,18 +2,18 @@ ansible/__init__.py,sha256=lcN6K0RviF9nJ6bUtvmwp26GEEy7CzyYivFJ6JIsziA,1215
|
|
|
2
2
|
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
|
-
ansible/keyword_desc.yml,sha256=
|
|
6
|
-
ansible/release.py,sha256=
|
|
7
|
-
ansible/_internal/__init__.py,sha256=
|
|
8
|
-
ansible/_internal/_collection_proxy.py,sha256=
|
|
5
|
+
ansible/keyword_desc.yml,sha256=i3d_5dCS8Qsy5DNyrZnPHupkFnj6U3onpgEe2VqS8AY,7273
|
|
6
|
+
ansible/release.py,sha256=NwYawm8ra7_zzIZ1ekBHcWMpiWnupIRmrlUQcBDJOoo,840
|
|
7
|
+
ansible/_internal/__init__.py,sha256=pLZlT_Cm_fKBKDcWB5g0KZt2XWKZGlC7sfytkuUTbJU,2186
|
|
8
|
+
ansible/_internal/_collection_proxy.py,sha256=Dm7iePwbX9fHPCYsadPLek47eiYSJSQkfcmSWHI8kr8,1154
|
|
9
9
|
ansible/_internal/_display_utils.py,sha256=2dOknOQpt_GW2AkoMUJxPvmQUCAVYv911KwX6Dwrh0c,5651
|
|
10
10
|
ansible/_internal/_event_formatting.py,sha256=cHMsuYi6v2W3fgEYdKLSe8O34kW5bZE26zyj7FOt268,4222
|
|
11
11
|
ansible/_internal/_locking.py,sha256=8jMXsKSNCKVZRUesZWb5Hx45g9UVVZ9JXUa_fq2004Q,669
|
|
12
12
|
ansible/_internal/_task.py,sha256=NCEF3sPxt99n4Gk-e00A9Ce52duffThJm0qlmgkm0nQ,3293
|
|
13
13
|
ansible/_internal/_testing.py,sha256=WCEwZk8_NP2f2LoY2zjh6VIw6d8bPoFspvfP3-KQMjQ,825
|
|
14
|
-
ansible/_internal/_wrapt.py,sha256=
|
|
14
|
+
ansible/_internal/_wrapt.py,sha256=HXxp0a_3bdbV09oV3u0nt07GpyDLUxhjOQy2pEjWOWI,30399
|
|
15
15
|
ansible/_internal/_ansiballz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
ansible/_internal/_ansiballz/_builder.py,sha256=
|
|
16
|
+
ansible/_internal/_ansiballz/_builder.py,sha256=ju2y4LuVO215rjeAGx--6ixUi_JDNwHQB2BS_tYG_Zk,4080
|
|
17
17
|
ansible/_internal/_ansiballz/_wrapper.py,sha256=xWgDbVAP1zA66_iUBAvM9HNtDAxYVYkOfPpJAflGdlU,11780
|
|
18
18
|
ansible/_internal/_datatag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
ansible/_internal/_datatag/_tags.py,sha256=8ZLQUX2ggTQluwtLfFbNKa9rKNpxRhqalRzeqSUda2Y,5180
|
|
@@ -26,7 +26,7 @@ ansible/_internal/_errors/_error_factory.py,sha256=mu5V16XfB9KbrHyo6TfVWtXVkXNA8
|
|
|
26
26
|
ansible/_internal/_errors/_error_utils.py,sha256=P8sWdmQxZ4UFJ1jfmRVgkdZ_xDYZ3nDNqIfZNK9yihY,9141
|
|
27
27
|
ansible/_internal/_errors/_handler.py,sha256=4ZX27G_jrDsomR28OVC0A9WRponpte5V-QGq5ZcDzeE,3455
|
|
28
28
|
ansible/_internal/_errors/_task_timeout.py,sha256=CN5J2eKa42cyahXC0IMrliwQAF7DMwNvdaJmzSqPBsk,923
|
|
29
|
-
ansible/_internal/_json/__init__.py,sha256=
|
|
29
|
+
ansible/_internal/_json/__init__.py,sha256=B-XM7lNrHhMMy0KgYqSZ-zb7Jm9AyjSAkKs-Vq5aXbM,9262
|
|
30
30
|
ansible/_internal/_json/_legacy_encoder.py,sha256=clXiPnJ2aR5McuSbajugTPW2wav1wwklivxDKWZ1iFw,1646
|
|
31
31
|
ansible/_internal/_json/_profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=SVTQ59kZiO4YSVqewTz4qcfj-5iROcO5bJrE0DlHei0,1913
|
|
@@ -41,12 +41,12 @@ ansible/_internal/_templating/__init__.py,sha256=78wbU8DM2Wk7sfJqp72bmEJMs7hyQ5k
|
|
|
41
41
|
ansible/_internal/_templating/_access.py,sha256=dse4dr0TRpZdRbZLfg0VJ7wigNm2iS4DA-JEK6LoTLc,3467
|
|
42
42
|
ansible/_internal/_templating/_chain_templar.py,sha256=VArYtkVpa0mZY2AhSL_Re2McPxM_lcgZupcDNwb4wB8,2256
|
|
43
43
|
ansible/_internal/_templating/_datatag.py,sha256=HuOaYtpmXYZkTDVVVz5lO3E6trowAIp80P2BN-UTyHs,3903
|
|
44
|
-
ansible/_internal/_templating/_engine.py,sha256=
|
|
44
|
+
ansible/_internal/_templating/_engine.py,sha256=rSuArdeOYhrjy4KldeDdl43aBvGd7ww0qFeoF0QJyWY,28375
|
|
45
45
|
ansible/_internal/_templating/_errors.py,sha256=3dxLGu1NLft-9GDuNKNc1K4OIDaduAzFYkNOYBNAYCI,1302
|
|
46
46
|
ansible/_internal/_templating/_jinja_bits.py,sha256=j723v_tpKf1v09J6-3WkA2YAC_x_0dW8rEpVlbCOg7U,48719
|
|
47
47
|
ansible/_internal/_templating/_jinja_common.py,sha256=qgiY2WbNfp6Xj55P-a-208UVFDsFALJMqh_2lMM_Q5k,11761
|
|
48
48
|
ansible/_internal/_templating/_jinja_patches.py,sha256=O_1GHYLEYtu1f2g0iSb3GDBrQMk1Qbh43H4CUEP9wcE,1412
|
|
49
|
-
ansible/_internal/_templating/_jinja_plugins.py,sha256=
|
|
49
|
+
ansible/_internal/_templating/_jinja_plugins.py,sha256=EXkOxCJXworvXK3WQN4ufzRzaJwLvq5e8Yp_2EphXbA,16422
|
|
50
50
|
ansible/_internal/_templating/_lazy_containers.py,sha256=xHbk7oTs588yTov-EOKz2X0MC5afp1hHv8pHAhpdlDE,27240
|
|
51
51
|
ansible/_internal/_templating/_marker_behaviors.py,sha256=EPQwotuBRagad5k9rGALlfCSV-CbNGXY6oA-DPp6dJ4,3439
|
|
52
52
|
ansible/_internal/_templating/_template_vars.py,sha256=nQODzE_SeCYFuGpdUoEI6b3saJSddDVWCiOtY8n6ouY,2585
|
|
@@ -75,38 +75,38 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.y
|
|
|
75
75
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.py,sha256=A6vLIuZMi05Hwzvnm6mZ2besNBIoOGxcby4aM2zcD8M,453
|
|
76
76
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.yml,sha256=sRbc5UjNAelH023-mXpQ9z_-17i36-7L_0ynKIRb3EM,520
|
|
77
77
|
ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
|
|
78
|
-
ansible/cli/__init__.py,sha256=
|
|
78
|
+
ansible/cli/__init__.py,sha256=oct19VbBNK7j32lrIug20C7k7H-n7vafFayJiocv410,27716
|
|
79
79
|
ansible/cli/_ssh_askpass.py,sha256=fKYjoUkAxh1slpKm969wtJxX78zXe57bgLtQDhxMk_Y,2007
|
|
80
|
-
ansible/cli/adhoc.py,sha256=
|
|
81
|
-
ansible/cli/config.py,sha256=
|
|
80
|
+
ansible/cli/adhoc.py,sha256=ybYB9k6KsT2126E7My7lkOGFOIm2i0yF1FdY5MYtujg,8326
|
|
81
|
+
ansible/cli/config.py,sha256=3lHmiX-pOI4lM7jnMPpLU1-xiOc76JWSXnVvVZelHLk,28512
|
|
82
82
|
ansible/cli/console.py,sha256=F9jL6C3LTZBBD_0OIanGyM86PfxCSAe-gcvv7bqmt58,22002
|
|
83
|
-
ansible/cli/doc.py,sha256=
|
|
84
|
-
ansible/cli/galaxy.py,sha256=
|
|
85
|
-
ansible/cli/inventory.py,sha256=
|
|
86
|
-
ansible/cli/playbook.py,sha256=
|
|
87
|
-
ansible/cli/pull.py,sha256=
|
|
83
|
+
ansible/cli/doc.py,sha256=7y1IJfNJbfJKeGNJJi5pzZDjrkj2raAMhnxQLAvszCg,73077
|
|
84
|
+
ansible/cli/galaxy.py,sha256=nSRvhTJnYmrf6OvSnJV-uqw3w9I0d-HRIxHiS9A6HSE,94348
|
|
85
|
+
ansible/cli/inventory.py,sha256=F5vifIv1t_wOLDSY9B3giSpS-876pKIXXwHE_ISET30,15983
|
|
86
|
+
ansible/cli/playbook.py,sha256=F8v8t4v2dIpSVOlLb2RtvoHC3MraKjPbq1j01OOrQrA,10480
|
|
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
|
-
ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=
|
|
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
|
|
94
94
|
ansible/collections/list.py,sha256=kRYyW0UUu2Js5UuDW_pELrU3pQMPHSOW0hUXVA6b7-8,2977
|
|
95
95
|
ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,1002
|
|
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=
|
|
100
|
-
ansible/config/manager.py,sha256=
|
|
99
|
+
ansible/config/base.yml,sha256=pvY_Fx_BvDFuvA_RcgCfQW4LHJsqiMpiSN62QT1FS6U,90093
|
|
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
|
|
103
103
|
ansible/executor/interpreter_discovery.py,sha256=UWeAxnHknJCci2gG3zt6edx5Nj4WbHYfJVcmW_DzItY,3858
|
|
104
104
|
ansible/executor/module_common.py,sha256=sXMOvKj_9ubeBaCPVBHh76uHaRYZm-8mOhsSG55aXQ8,60450
|
|
105
|
-
ansible/executor/play_iterator.py,sha256=
|
|
106
|
-
ansible/executor/playbook_executor.py,sha256=
|
|
105
|
+
ansible/executor/play_iterator.py,sha256=GiYqzHSNGokz-xJ-R40z_Yo8mBNVTdKwUwZFOboO0iM,33268
|
|
106
|
+
ansible/executor/playbook_executor.py,sha256=r4KKmo9c5Nq2ddLffKVvTpg5Pfmc-oX5CF63k_khbsA,14270
|
|
107
107
|
ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
|
|
108
|
-
ansible/executor/task_executor.py,sha256=
|
|
109
|
-
ansible/executor/task_queue_manager.py,sha256=
|
|
108
|
+
ansible/executor/task_executor.py,sha256=1lvghGHj9nCSd4735kJUr2Pguq-gkE-k-7Oa-3CUbJE,61701
|
|
109
|
+
ansible/executor/task_queue_manager.py,sha256=V1heXu0xSi0hJVU2IEVWVYNobyt0mNoQl6DS3hIb2OA,20258
|
|
110
110
|
ansible/executor/task_result.py,sha256=e73P110j8hcw9wv8O7p-z6St5VIvyP6iOV4cW4sswV8,10254
|
|
111
111
|
ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
112
|
ansible/executor/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -127,11 +127,11 @@ ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVz
|
|
|
127
127
|
ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
|
128
128
|
ansible/executor/process/worker.py,sha256=33B0FM5Om6BNIr-hA1es9q6yWKOu8Tlm26AdIM8DqV4,9546
|
|
129
129
|
ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
|
|
130
|
-
ansible/galaxy/api.py,sha256=
|
|
131
|
-
ansible/galaxy/role.py,sha256=
|
|
130
|
+
ansible/galaxy/api.py,sha256=LkuRnsfP2tYIohsDyVSCvpXAPgWaIEb0KawhriHrFXg,37845
|
|
131
|
+
ansible/galaxy/role.py,sha256=EiICN3STH3UwOQ-nr1wLdKoc0lpwQJm2rV-7GzhmMPo,19693
|
|
132
132
|
ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
|
|
133
133
|
ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
|
|
134
|
-
ansible/galaxy/collection/__init__.py,sha256=
|
|
134
|
+
ansible/galaxy/collection/__init__.py,sha256=W9GBaD_YEQ1o83ZNQKp0eKpFoWsqnFMoeOVypL3jGTg,78177
|
|
135
135
|
ansible/galaxy/collection/concrete_artifact_manager.py,sha256=qFCfDA0geM7jPlGjS1XlA1-AhUuJ89thxuvOneqQgcQ,29246
|
|
136
136
|
ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
|
|
137
137
|
ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
|
|
@@ -197,33 +197,33 @@ ansible/galaxy/data/network/terminal_plugins/example.py.j2,sha256=3GD0yAiI0sqO1H
|
|
|
197
197
|
ansible/galaxy/data/network/tests/inventory,sha256=D_lKLzrl-huN0pk-v0UvwKojTjsegmBHnkNuxFYxBVc,43
|
|
198
198
|
ansible/galaxy/data/network/tests/test.yml.j2,sha256=_PIRgn2D8RCeBmiHDxpg2H4GN5yB4gnJMaAS9a8V_fA,231
|
|
199
199
|
ansible/galaxy/data/network/vars/main.yml.j2,sha256=3I4QQOFgSN3CSJ2C1qRFPeRVv23Sewed5FYvwyfUF3Q,68
|
|
200
|
-
ansible/galaxy/dependency_resolution/__init__.py,sha256=
|
|
201
|
-
ansible/galaxy/dependency_resolution/dataclasses.py,sha256=
|
|
200
|
+
ansible/galaxy/dependency_resolution/__init__.py,sha256=ZH4S4PzZTWdZAQuLt8U0Cc0VnCN1ja1ATlT5KlizZDA,1967
|
|
201
|
+
ansible/galaxy/dependency_resolution/dataclasses.py,sha256=ZpzpB_Um8zfDUItt0bQQAJHvY3giTV6MxGMWGmkA4V8,24740
|
|
202
202
|
ansible/galaxy/dependency_resolution/errors.py,sha256=t9RSyjCNaeB9ipzW_UmZA96SDHlMh0v5IsqbN1L_LQ4,697
|
|
203
|
-
ansible/galaxy/dependency_resolution/providers.py,sha256=
|
|
203
|
+
ansible/galaxy/dependency_resolution/providers.py,sha256=WnE72gTGGZYrvSXzPqWrje6fWCuBKQzZ5QXxS-D3huE,19310
|
|
204
204
|
ansible/galaxy/dependency_resolution/reporters.py,sha256=HKYT0lf6sihCQ2EheYD07m6mZ5P69l1pLYBjx8Vhk-k,3389
|
|
205
205
|
ansible/galaxy/dependency_resolution/resolvers.py,sha256=NUtKTwIBMegoMkfhbxKA_COF0bSsXMCLkp8cqI0ZKGA,623
|
|
206
|
-
ansible/galaxy/dependency_resolution/versioning.py,sha256=
|
|
206
|
+
ansible/galaxy/dependency_resolution/versioning.py,sha256=2BdHxm_UHGT2KYbZ_e1aUsHeAK5elWs-FdeYLm_yBKw,1700
|
|
207
207
|
ansible/inventory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
208
|
ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,10481
|
|
209
209
|
ansible/inventory/group.py,sha256=x6tPDWgWjpIuO82Jr3Rf0L0P_w4XZZdGS7dF3q15Y3Q,9614
|
|
210
210
|
ansible/inventory/helpers.py,sha256=8DaVEdMhIfan6Fy65AoHO3rILtl3mDzxei4_j8r4fp4,1556
|
|
211
211
|
ansible/inventory/host.py,sha256=cZw906LeMYe6oF3ZxW6K2HWoW2Qc0jxHssg_C8cRumE,4938
|
|
212
|
-
ansible/inventory/manager.py,sha256=
|
|
212
|
+
ansible/inventory/manager.py,sha256=IiODOOpm5iGpAHn5Sjap-_XTX0pZsXrQCevEaFNF_Sc,31743
|
|
213
213
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
-
ansible/module_utils/_text.py,sha256=
|
|
215
|
-
ansible/module_utils/ansible_release.py,sha256=
|
|
214
|
+
ansible/module_utils/_text.py,sha256=MjBVvIttHxQbicW6EY9F0B7GTbhjyiVDNt92fCZnQOw,1207
|
|
215
|
+
ansible/module_utils/ansible_release.py,sha256=NwYawm8ra7_zzIZ1ekBHcWMpiWnupIRmrlUQcBDJOoo,840
|
|
216
216
|
ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
|
|
217
|
-
ansible/module_utils/basic.py,sha256=
|
|
218
|
-
ansible/module_utils/connection.py,sha256=
|
|
217
|
+
ansible/module_utils/basic.py,sha256=GsM5pubhLqRjdXE21LxdbbzOgRDrQm6a9bJ-_-kHHSI,90082
|
|
218
|
+
ansible/module_utils/connection.py,sha256=5RE7BmO58yvutG4Z1sVNsb1Km9ea1hA37HRcPuSJxFA,7575
|
|
219
219
|
ansible/module_utils/datatag.py,sha256=tEwBXm75G_Hrk7I0dj_B1htFmIFCGDB_ifO-3MPPSHs,1659
|
|
220
220
|
ansible/module_utils/errors.py,sha256=cOVAUZaQTeYaSGhKnYsT3L8vshayQHbCXzkT6HIVi_o,3345
|
|
221
221
|
ansible/module_utils/json_utils.py,sha256=DzkQvlXMD_clOPxRXv7rZwAwMAUii3XH_MvhS4ab39Y,3403
|
|
222
|
-
ansible/module_utils/service.py,sha256=
|
|
222
|
+
ansible/module_utils/service.py,sha256=mi5jRRJu6Z5D-P-fCg5UNshwKPQ-AFhkPanRLUkUaDo,9752
|
|
223
223
|
ansible/module_utils/splitter.py,sha256=MnvQVnEZ_ceiso1JsesGjaK-PTKcSPOd2FH9FKX8wLA,9468
|
|
224
224
|
ansible/module_utils/testing.py,sha256=BbQdvHibcqCtze3XrX7eXYbyGF3UKRmNqfPviosSVNk,1144
|
|
225
225
|
ansible/module_utils/urls.py,sha256=oZSLYArN3AdS6rRKLPEKgBxpNXGYKZp34z9CxN_7ywA,55872
|
|
226
|
-
ansible/module_utils/yumdnf.py,sha256=
|
|
226
|
+
ansible/module_utils/yumdnf.py,sha256=z75g5L3hhQCV_Z-0YRlqCsYC6_ffrFLzpdhgPkspWvo,6854
|
|
227
227
|
ansible/module_utils/_internal/__init__.py,sha256=zCUoK0GPIBa-O45g5CLZkXBASFcwLrkuZnh6ljdWIto,2124
|
|
228
228
|
ansible/module_utils/_internal/_ambient_context.py,sha256=sZe6kovlSCfiqZm6T-AX_kgKuTaLf8KP7a5gTVf9fV8,2579
|
|
229
229
|
ansible/module_utils/_internal/_dataclass_validation.py,sha256=TmPBK90g8Vvizlvu-UIrobgALH0l3LHrFUiysJfyRC8,8684
|
|
@@ -232,6 +232,7 @@ ansible/module_utils/_internal/_deprecator.py,sha256=LHU3UqtuljAkGo96ftruYudxuf_
|
|
|
232
232
|
ansible/module_utils/_internal/_errors.py,sha256=tOCafo3QVr_lLKoqfD-_H4XzQN60mtpm92l9D_NF4nI,3914
|
|
233
233
|
ansible/module_utils/_internal/_event_utils.py,sha256=tW8DBWWLNAOmOH_Xmjm2yTc-zFCn3AO5IL4f-OY67NA,1978
|
|
234
234
|
ansible/module_utils/_internal/_messages.py,sha256=8pgv4VLn-CJQZ0h2wCRpeHuht_tuwTyxAxzmIbDw7X8,4307
|
|
235
|
+
ansible/module_utils/_internal/_no_six.py,sha256=QZT9u0BBQshGSDVOyPWsLtqnzr7v5KXBHEhvuJAr9wU,2763
|
|
235
236
|
ansible/module_utils/_internal/_plugin_info.py,sha256=09eBm1K0ee11kPT5Z6R2f7_SPq0gjI1fwYF8FTidUNw,1042
|
|
236
237
|
ansible/module_utils/_internal/_stack.py,sha256=Bva6lJ6A1153O3Kkha-9hxgFDqSbinz-JEYoKMCB3qE,630
|
|
237
238
|
ansible/module_utils/_internal/_testing.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -249,7 +250,7 @@ ansible/module_utils/_internal/_ansiballz/_extensions/_pydevd.py,sha256=IDLdc5B7
|
|
|
249
250
|
ansible/module_utils/_internal/_concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
250
251
|
ansible/module_utils/_internal/_concurrent/_daemon_threading.py,sha256=okMP5QPoU9YhYMQF31tUJ6ChyiXJHF-6TD9t6nfjKWE,1085
|
|
251
252
|
ansible/module_utils/_internal/_concurrent/_futures.py,sha256=Y0hpH1QXavZbKDude5Y8oYlxPvOhQarBhTQRc97odVs,936
|
|
252
|
-
ansible/module_utils/_internal/_datatag/__init__.py,sha256=
|
|
253
|
+
ansible/module_utils/_internal/_datatag/__init__.py,sha256=5OF0cNdYVPRTVhQQG1Rnt8WR2s2-nvEER9McyeuD0RY,37113
|
|
253
254
|
ansible/module_utils/_internal/_datatag/_tags.py,sha256=Rkze_LoP5-BUYsoAJjv5ojcplHsGp6MhwER95HQvRqY,468
|
|
254
255
|
ansible/module_utils/_internal/_json/__init__.py,sha256=KscFIf_fl3-TTM2fe68MwETHZBCxf83nZrsbVhqkpEM,2181
|
|
255
256
|
ansible/module_utils/_internal/_json/_legacy_encoder.py,sha256=Qz2WVbgFxprEpP174zrK7LIKEIk_cLwPsh2gbahavKo,1191
|
|
@@ -265,26 +266,26 @@ ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=gj
|
|
|
265
266
|
ansible/module_utils/_internal/_patches/_socket_patch.py,sha256=3vVyCy-rCedETOMFibzhookih-7YsYBsue9YurfIeVI,939
|
|
266
267
|
ansible/module_utils/_internal/_patches/_sys_intern_patch.py,sha256=ym-ZcAG56i41tr6VMpn8hWrNt10HsAvAF9Eiy5PZHWU,849
|
|
267
268
|
ansible/module_utils/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
|
-
ansible/module_utils/common/_collections_compat.py,sha256=
|
|
269
|
+
ansible/module_utils/common/_collections_compat.py,sha256=leYMDBwiniS3janictSmp0PNPWMsjuAqCToqwrCOnxs,1094
|
|
269
270
|
ansible/module_utils/common/_utils.py,sha256=940v5oANJiA9XJ6i_RtCRvA1e5GPJh3b8lRXY0KpOSI,1082
|
|
270
271
|
ansible/module_utils/common/arg_spec.py,sha256=qfosoeoqVhTJ9shZT2Bvg7xh5cFSZiqjaQKXeOasbV4,12354
|
|
271
|
-
ansible/module_utils/common/collections.py,sha256=
|
|
272
|
-
ansible/module_utils/common/dict_transformations.py,sha256=
|
|
272
|
+
ansible/module_utils/common/collections.py,sha256=SLPctcER17jiS4DfjeKUSNT3zf3FbX1nu9LMGk597sc,4074
|
|
273
|
+
ansible/module_utils/common/dict_transformations.py,sha256=Ut2cOQCwa5zXNfEU_jQ6xQEmBqJWnoCDKWUsZ8x7H98,5493
|
|
273
274
|
ansible/module_utils/common/file.py,sha256=LyBp_C_nbcsalY8biqQ_2WQ_ZT1iXe8ub1nNv5alI84,2982
|
|
274
275
|
ansible/module_utils/common/json.py,sha256=4M_1BjxFdX46-Iq1lNmb-4SLS7z5OXSLo6-lm4ukx3Q,4046
|
|
275
276
|
ansible/module_utils/common/locale.py,sha256=X-z_wjmd1ipcWRAahfcDKXr3uxMRqwnvALUS1fQ4XaE,2296
|
|
276
|
-
ansible/module_utils/common/network.py,sha256=
|
|
277
|
-
ansible/module_utils/common/parameters.py,sha256=
|
|
277
|
+
ansible/module_utils/common/network.py,sha256=pNDssZxt8-Oh7hXnU2DyWszlxmbTfJTe1amQsyUTjQA,4256
|
|
278
|
+
ansible/module_utils/common/parameters.py,sha256=K36Q93d3D8HNh8znAD0m-PoplBHtpogyJbgFaTdbCL4,37271
|
|
278
279
|
ansible/module_utils/common/process.py,sha256=4Iantrh13r_70oKljgoMeYi4C0EpjqQawLcbKcvxw9o,2234
|
|
279
280
|
ansible/module_utils/common/respawn.py,sha256=6YmopsVdkIcMoE9L2GQBpyuQe8Nm3C0HlqSqSdSNizo,3340
|
|
280
281
|
ansible/module_utils/common/sentinel.py,sha256=aPX7KPw1PifJX9wq8qfStEU5oiEPmOJEn76I_08vsjo,2372
|
|
281
282
|
ansible/module_utils/common/sys_info.py,sha256=sFcTKy_3iurRMBsB7aocWz_H-yO4Bgq_95zgOMl4slQ,5436
|
|
282
|
-
ansible/module_utils/common/validation.py,sha256=
|
|
283
|
+
ansible/module_utils/common/validation.py,sha256=PqpSgm02nOtMrFifkesZwaKMo5-u0cNI6G41ts01P0I,20340
|
|
283
284
|
ansible/module_utils/common/warnings.py,sha256=E94FJ89RQweJue2ZqdGlWyGXtj8VAmXmmiCGF9Ix-HE,5103
|
|
284
285
|
ansible/module_utils/common/yaml.py,sha256=VAz02OxllSUZAzchiQ1qpxUSWKCvEWQQrUIjUJ0EraU,2900
|
|
285
286
|
ansible/module_utils/common/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
|
-
ansible/module_utils/common/text/converters.py,sha256=
|
|
287
|
-
ansible/module_utils/common/text/formatters.py,sha256=
|
|
287
|
+
ansible/module_utils/common/text/converters.py,sha256=WgnVLiOTPYF41PyGNTHKMioryQ4Z7KKAXdlpTQ9ulYY,13866
|
|
288
|
+
ansible/module_utils/common/text/formatters.py,sha256=JPvKd-5Tl8oZSk3Mwm1rOqrsrZYqXOtq0u9-6fryUX8,4608
|
|
288
289
|
ansible/module_utils/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
289
290
|
ansible/module_utils/compat/datetime.py,sha256=7exiAHnMJESffXSDcqooSLL1CyYImeFS5iOp4C8erCQ,1444
|
|
290
291
|
ansible/module_utils/compat/paramiko.py,sha256=X_SAm-VnahBevD9DHHCyXigXgzTQJmhWTKqcGW_2xtg,1603
|
|
@@ -306,7 +307,7 @@ ansible/module_utils/facts/collector.py,sha256=biMRYFUlGpcjgVmh-2wqsTYqmqwRbFK-a
|
|
|
306
307
|
ansible/module_utils/facts/compat.py,sha256=CyvU9K945CpuYafb1uccTRjDxNLnZAYPMIEPkZeAjMA,4062
|
|
307
308
|
ansible/module_utils/facts/default_collectors.py,sha256=jmsjDEr_ahMPnhrRuPPlBqhkQSGBvNUwwtaqc7d3tRg,8348
|
|
308
309
|
ansible/module_utils/facts/namespace.py,sha256=g4OEoCfgm2MRumR5iPO7fZRS7lMv2ArQQE7LFUR8zPY,2313
|
|
309
|
-
ansible/module_utils/facts/packages.py,sha256=
|
|
310
|
+
ansible/module_utils/facts/packages.py,sha256=9cU67Gk205b2jQuV1xx_rJsAEmzgIwkiz3ALoy-iXlg,4483
|
|
310
311
|
ansible/module_utils/facts/sysctl.py,sha256=dhbwJtzVAmIJhs-0eD4XWPTGSnWfGyS79Th77Alj3YU,1969
|
|
311
312
|
ansible/module_utils/facts/timeout.py,sha256=rGOnkMaLIvrCDKfCJeQ8ref9jah4tsDzd24KZ-BFPS8,2453
|
|
312
313
|
ansible/module_utils/facts/utils.py,sha256=LXvJBKvtTCqGthWhTjYrRxFrG5B-vAEJz0jnN20iVSY,3419
|
|
@@ -318,10 +319,10 @@ ansible/module_utils/facts/hardware/dragonfly.py,sha256=3KsbUJ-8IaPnFf22hE6YOX39
|
|
|
318
319
|
ansible/module_utils/facts/hardware/freebsd.py,sha256=wA3tsE23D-V79NRojsySqpDz9sDuakna4RTEForGxoY,10021
|
|
319
320
|
ansible/module_utils/facts/hardware/hpux.py,sha256=W70ZZjV-_dv9JZfs77e31TYIIGEfGDxJxbVOIac3otg,8504
|
|
320
321
|
ansible/module_utils/facts/hardware/hurd.py,sha256=EvR-cvhLazQef0iWucWXjBQt2hnnuG4lEvEXDEVK7dI,1700
|
|
321
|
-
ansible/module_utils/facts/hardware/linux.py,sha256=
|
|
322
|
-
ansible/module_utils/facts/hardware/netbsd.py,sha256=
|
|
322
|
+
ansible/module_utils/facts/hardware/linux.py,sha256=ifi9vEgUHalmheKDTzPNFVOBowi8tn1B_AMPw7PsDRQ,38052
|
|
323
|
+
ansible/module_utils/facts/hardware/netbsd.py,sha256=cMHPE64YaaP2VVAO-wvZiVkGUQ91w8HLYJtx48dLTJU,6213
|
|
323
324
|
ansible/module_utils/facts/hardware/openbsd.py,sha256=SWPUp08-5OxVz_OZ5pmexTKa-m2yv0p_k6Sn_fMZhRs,6934
|
|
324
|
-
ansible/module_utils/facts/hardware/sunos.py,sha256=
|
|
325
|
+
ansible/module_utils/facts/hardware/sunos.py,sha256=Sp7ejThuOESfLOwjQoXnSk6y00AhwiYrwWcYLhyLylA,10589
|
|
325
326
|
ansible/module_utils/facts/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
327
|
ansible/module_utils/facts/network/aix.py,sha256=faOUeIGdDJ1wM-8lasQxeZFPDK5ksycukJiaU5z4pe4,5988
|
|
327
328
|
ansible/module_utils/facts/network/base.py,sha256=Oux5imyAQmocz9YxBY2MXukTtJUiv6O5zC_-YTNT4Wk,2387
|
|
@@ -347,12 +348,12 @@ ansible/module_utils/facts/system/caps.py,sha256=OdxIGhqVdYHrMfPesex99PLu2-7jN50
|
|
|
347
348
|
ansible/module_utils/facts/system/chroot.py,sha256=-95UvBeowED7_5-lM8-lbB8fspCvK37omufu-IEyrm4,1488
|
|
348
349
|
ansible/module_utils/facts/system/cmdline.py,sha256=jlBoYdenGUy2ooiATuudP4cYsVVcynKOVlAPOpQndAQ,2608
|
|
349
350
|
ansible/module_utils/facts/system/date_time.py,sha256=cFg729Q2xCuKx0D3nCECr-u5mbltGp8l5txXJ26Q8fM,3086
|
|
350
|
-
ansible/module_utils/facts/system/distribution.py,sha256=
|
|
351
|
+
ansible/module_utils/facts/system/distribution.py,sha256=TOkELN4comEEE2OyK3oGJUbXP9E10IGX_OfHlj7DY3Q,33610
|
|
351
352
|
ansible/module_utils/facts/system/dns.py,sha256=N_dGrdB6B7TLfD-aiNqZTs7BnNIQopgPm-wxyrH2jxw,2664
|
|
352
|
-
ansible/module_utils/facts/system/env.py,sha256=
|
|
353
|
+
ansible/module_utils/facts/system/env.py,sha256=Osy8H9z2ye-mj6vuVFqhCB7eikmGWrSnywF8y42HOx8,1261
|
|
353
354
|
ansible/module_utils/facts/system/fips.py,sha256=9zdP23yXfY4re6Ut4OeQVYO31JkKoy1kD-HeQdSLZ5Q,784
|
|
354
355
|
ansible/module_utils/facts/system/loadavg.py,sha256=X9Z3ngxjfg_Yr73dG5m4WcMWGpzv7DTeF_uF7GZmzt8,740
|
|
355
|
-
ansible/module_utils/facts/system/local.py,sha256=
|
|
356
|
+
ansible/module_utils/facts/system/local.py,sha256=Im3Ej9a-8x1gzcbGkyD-loCoyIG3vD_qMVcBgbvzgKI,3984
|
|
356
357
|
ansible/module_utils/facts/system/lsb.py,sha256=Ovm9-xvOHyNH4o97I0MpCAGKxDaEHgyCGQd_KGYUSVw,3454
|
|
357
358
|
ansible/module_utils/facts/system/pkg_mgr.py,sha256=q_dy9U4-3cCh-do70E_s-1wiiBlzmRryKuHcFK7tDuw,6375
|
|
358
359
|
ansible/module_utils/facts/system/platform.py,sha256=96T3nZJlfVqG9FesKu0L9htVE_LegNknu3f8ZNP_BsI,4061
|
|
@@ -373,7 +374,7 @@ ansible/module_utils/facts/virtual/openbsd.py,sha256=J8Ow7x3J5ZuHFThqAwIdAdTLV1V
|
|
|
373
374
|
ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH2j5KO3F5jKo3Ec,5700
|
|
374
375
|
ansible/module_utils/facts/virtual/sysctl.py,sha256=suvfSdKL5e_AAPCxE_EQRiqNHzpMJYSucT4URyn8Qxw,4741
|
|
375
376
|
ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
|
-
ansible/module_utils/parsing/convert_bool.py,sha256=
|
|
377
|
+
ansible/module_utils/parsing/convert_bool.py,sha256=XDOMp6RFXpDNFdaCjswtcdcOYrSgjP4LZ6-BmIKpKMA,1364
|
|
377
378
|
ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=Pu4r0EJduybRublOWrs0sr0-zD6RfZUDqwJgntUFDuU,20218
|
|
378
379
|
ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
|
|
379
380
|
ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
|
|
@@ -386,35 +387,35 @@ ansible/module_utils/powershell/Ansible.ModuleUtils.PrivilegeUtil.psm1,sha256=1u
|
|
|
386
387
|
ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1,sha256=TX70j9dlg_SGVcb2HrHxakrkZzsyxPtaIeKaRevgy54,3639
|
|
387
388
|
ansible/module_utils/powershell/Ansible.ModuleUtils.WebRequest.psm1,sha256=4Wb0K_GO8maVpQYpdDBrUvl7YgkReeunXSNM1N6nq74,19182
|
|
388
389
|
ansible/module_utils/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
389
|
-
ansible/module_utils/six/__init__.py,sha256=
|
|
390
|
+
ansible/module_utils/six/__init__.py,sha256=R8WpTF9a4x8RcBnCbS4StADOgbh-sCncsQkvQdik78w,35132
|
|
390
391
|
ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
392
|
ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
|
|
392
|
-
ansible/modules/apt.py,sha256=
|
|
393
|
+
ansible/modules/apt.py,sha256=267kolDkjiXbO80Oum2wrM96pQQJLHk3NROTe2fCF8w,63056
|
|
393
394
|
ansible/modules/apt_key.py,sha256=DmmNkVdRrhOCEhItsbXUA3TuAfXZW4A0CGZu4JeqL90,18485
|
|
394
|
-
ansible/modules/apt_repository.py,sha256
|
|
395
|
-
ansible/modules/assemble.py,sha256=
|
|
395
|
+
ansible/modules/apt_repository.py,sha256=af8WbyI-XZ1D0dJpMpfkPy6nEyeY77uMIXEpMx7f_40,30694
|
|
396
|
+
ansible/modules/assemble.py,sha256=I7RiCzQ9nl7eQiM5NN2gXilc7CxmYbqDEC-x2Ab2v1o,9212
|
|
396
397
|
ansible/modules/assert.py,sha256=B41GXAdBQ6XbYj9G8ENx29fhAlcnyBXm8zDqbd1TnMU,2954
|
|
397
398
|
ansible/modules/async_status.py,sha256=EnE4-KbUduCUm4sVhpmNlAEbCo6fA8fV4K9MWNnvG20,4742
|
|
398
399
|
ansible/modules/async_wrapper.py,sha256=vou6ixJkVeKCpAZkqEkQgtyc2-QGQSgL8_MBlMRUiFE,11853
|
|
399
|
-
ansible/modules/blockinfile.py,sha256=
|
|
400
|
+
ansible/modules/blockinfile.py,sha256=Qkz_7mF9E_5xgZBJAxEh_P9U900_AwbsxuuaVmc9nkI,15943
|
|
400
401
|
ansible/modules/command.py,sha256=fLSlB_ZhDLN3ZEi6RwjxV6LI6ouj9ODbXMKGxRIHDy0,14025
|
|
401
402
|
ansible/modules/copy.py,sha256=qdKvL9aE495X_NyWqBVESb-9jB8oAatQhdktPeDNcU8,26721
|
|
402
|
-
ansible/modules/cron.py,sha256=
|
|
403
|
-
ansible/modules/deb822_repository.py,sha256=
|
|
403
|
+
ansible/modules/cron.py,sha256=utGpPkNS_GS2FBhcb_-e1IoIIE31TjEhS3ewUB3sRf0,26410
|
|
404
|
+
ansible/modules/deb822_repository.py,sha256=T1vNgPyvSMj-CnObj7Gv1jsv6zD__QiC-SPZXRcqeCE,19808
|
|
404
405
|
ansible/modules/debconf.py,sha256=YAS1yba0yaxPrfFCLFLQwtHxlpriNxiJiwpDnmm3JP0,9362
|
|
405
406
|
ansible/modules/debug.py,sha256=E2UADFGHgS78KxCiOdXoojX5G4pAAMz32VGHgaPObNs,2908
|
|
406
|
-
ansible/modules/dnf.py,sha256=
|
|
407
|
-
ansible/modules/dnf5.py,sha256=
|
|
407
|
+
ansible/modules/dnf.py,sha256=Qc6T4vQSUGBPYzjF6GZXLibn2EDh3ctv0KKHBZddhys,51642
|
|
408
|
+
ansible/modules/dnf5.py,sha256=wsKjvH-3ah9rkWJOD68llQGcGtDkLQQShFcsZ0wMgc4,32677
|
|
408
409
|
ansible/modules/dpkg_selections.py,sha256=RWtzxNNOfQ5SdwMwnt_1q-IJhLVb-nxNAriJwRHNVuI,2805
|
|
409
|
-
ansible/modules/expect.py,sha256=
|
|
410
|
+
ansible/modules/expect.py,sha256=WKbPtCjWtrfmJiUnRCEvOeVtVAfHTUVGzsllxSCEKEc,9260
|
|
410
411
|
ansible/modules/fail.py,sha256=kppam_caBllcF5IcKEYd-Xc--okSAOWNG9dVbpn2CwM,1659
|
|
411
412
|
ansible/modules/fetch.py,sha256=lEf84dEW1qfNJGcYhRBWyDcJPwzN0SvoM5aMj3KepzI,4191
|
|
412
413
|
ansible/modules/file.py,sha256=gqWj6X6I0KzfHC_Cq3vrKovpFUnawZzFTYI4mw160Hk,39902
|
|
413
|
-
ansible/modules/find.py,sha256=
|
|
414
|
+
ansible/modules/find.py,sha256=UJCRRFfn6q1kungNkmCMhkG7FFEk88JNU3ysjdXfpvw,23979
|
|
414
415
|
ansible/modules/gather_facts.py,sha256=3t2_XMgKuB-U35tnO-JbGEsQ_E31SnZxRQ-B_DVkIu4,3107
|
|
415
|
-
ansible/modules/get_url.py,sha256=
|
|
416
|
+
ansible/modules/get_url.py,sha256=64yvFT1_uc15JEVjTYsRk3Lh9N5dvVpLi5r5nCwPinc,28334
|
|
416
417
|
ansible/modules/getent.py,sha256=tq3z0Szq_m2gp4DOgACRvNJzh-tkXGzd2Ew8XxrGRWM,5592
|
|
417
|
-
ansible/modules/git.py,sha256=
|
|
418
|
+
ansible/modules/git.py,sha256=sWFW6ifGx_tJxgpIQ8cMF-kU9aevuW7Uy8tPOY76ocw,57064
|
|
418
419
|
ansible/modules/group.py,sha256=UKbXzwsgAFWWMlgFW8R3CyzthJXXu5JHnHnj7IlqOac,23747
|
|
419
420
|
ansible/modules/group_by.py,sha256=_RDYbNJS27eosefvwnBCM86GyobaY-h3ZiWkd04qU68,2416
|
|
420
421
|
ansible/modules/hostname.py,sha256=zMCptoSsKLSfKK_62yxFMbg59Qh5A2RYvdnpqB9AKSA,28169
|
|
@@ -423,30 +424,30 @@ ansible/modules/import_role.py,sha256=LkGQWDRvU2EUJIamn9OcdpcpfVPpswhLildcHe9urS
|
|
|
423
424
|
ansible/modules/import_tasks.py,sha256=ZhlJafQ3ETM9Pi3Qt2gfedBI-q73HaeJigBKhR8c-eI,2137
|
|
424
425
|
ansible/modules/include_role.py,sha256=9FWEwk09DT0ucD6OOMPOS1i6jkllJOn7gkzJkRg8v2E,4223
|
|
425
426
|
ansible/modules/include_tasks.py,sha256=SrEIkzv7o01GXmRsXmWHhaNJcHiqN9qXZeDsNAhHuo4,2659
|
|
426
|
-
ansible/modules/include_vars.py,sha256=
|
|
427
|
+
ansible/modules/include_vars.py,sha256=JplpZJT9d4nKPUbKYSlPOh1_huyZuaSmpt-z4i2olx0,6730
|
|
427
428
|
ansible/modules/iptables.py,sha256=94iDMuVpx3Qq52cJaUW0dxZO3FE8cvs4op8t7nsvNm8,35494
|
|
428
|
-
ansible/modules/known_hosts.py,sha256=
|
|
429
|
-
ansible/modules/lineinfile.py,sha256=
|
|
429
|
+
ansible/modules/known_hosts.py,sha256=4mZFUKtNuvTT60cf_XV7P6DjyX-K5IO5RhKHaE8Tqc0,14449
|
|
430
|
+
ansible/modules/lineinfile.py,sha256=x0nR7uJ5B28Ckap_Yo_3zMabc742jXj59Dk9qF616dQ,23595
|
|
430
431
|
ansible/modules/meta.py,sha256=0oLfvydcj8XeZsRR8yoRzgTINaPsEfl3-jxp1T-lzDM,7264
|
|
431
432
|
ansible/modules/mount_facts.py,sha256=vy9Eeu17_EMsJbxgc23pa7DDXwU8rg11WFJTqcLjMXo,26018
|
|
432
433
|
ansible/modules/package.py,sha256=xwiE0SDoz1Drrh_UjsRi7naAY9Xp4hpO_TbmLio2EFg,3877
|
|
433
|
-
ansible/modules/package_facts.py,sha256=
|
|
434
|
+
ansible/modules/package_facts.py,sha256=LmwEHbKwOorRzFGxVMXMhwq2pjFPvGiDYUiJhWFrUX0,17328
|
|
434
435
|
ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
|
|
435
436
|
ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
|
|
436
|
-
ansible/modules/pip.py,sha256=
|
|
437
|
+
ansible/modules/pip.py,sha256=N3vI-WcWqhxk8lgPRCYiYg7ixKoMWQ6N8w__lXxDDsI,32768
|
|
437
438
|
ansible/modules/raw.py,sha256=EfELGk-DOBm1o8Y11Mfknx-B41Odbv9snNu3A6n6FRQ,3725
|
|
438
439
|
ansible/modules/reboot.py,sha256=P5mbaDi_k-ISjR5M0adW6yeyssahw4QvXYqSN7elypk,4808
|
|
439
|
-
ansible/modules/replace.py,sha256=
|
|
440
|
+
ansible/modules/replace.py,sha256=CBP5P32B0TMutcQc7LIySup0Z-Gs-ha6JZgD6BJ-Jdk,11635
|
|
440
441
|
ansible/modules/rpm_key.py,sha256=8_DnYHOL1lAOlb_V5Y8T-qHwptjJxfaZw1I35tyGT7Q,9312
|
|
441
442
|
ansible/modules/script.py,sha256=WmdINj1MxpccX9MspvWg6aP5MZGlfm0KSPpqNY7h0fk,4410
|
|
442
|
-
ansible/modules/service.py,sha256=
|
|
443
|
+
ansible/modules/service.py,sha256=H6jf9sWhcT_oUyPgHx9fbuihk0RTf7G42lxEABvLPOI,61981
|
|
443
444
|
ansible/modules/service_facts.py,sha256=imbORQiIi3mUalPBZbQZkrBhaEevSzp_L4vV7I_Qs8s,21408
|
|
444
445
|
ansible/modules/set_fact.py,sha256=3MysP4bx0XnYevu5L7iAJPLuq7ykp6lixeauU4LKEQc,5676
|
|
445
446
|
ansible/modules/set_stats.py,sha256=3X3noQW_QQaG3Hb9rsxSDw6HP34MjqYJaqUF7RUL4-E,2641
|
|
446
447
|
ansible/modules/setup.py,sha256=lHSuga52gN9mgnD-Rbs6ufqzkt7GvpzsQlb5PtfI2bY,11034
|
|
447
448
|
ansible/modules/shell.py,sha256=Wr_K2zrHqnT3Aw4I42FP_-7dBxNAU04OnKzEtxVyQT4,6830
|
|
448
449
|
ansible/modules/slurp.py,sha256=XwO6kxFmejod2V-OGqk2lmhnK7OCkkFhLEmMcfGChJ0,3064
|
|
449
|
-
ansible/modules/stat.py,sha256=
|
|
450
|
+
ansible/modules/stat.py,sha256=nSbf-WARCU9EcRDaySZA_APMpupFgyy0sPKHlUE5Ymk,19495
|
|
450
451
|
ansible/modules/subversion.py,sha256=XEhsibJHb5rg_yioveP_c-THxbh0ZMm0d8qApk02MZg,13485
|
|
451
452
|
ansible/modules/systemd.py,sha256=x7HSnRWEnY80ROjZ1EHTXTILff-fix5IuEKwvqgd_t4,24989
|
|
452
453
|
ansible/modules/systemd_service.py,sha256=x7HSnRWEnY80ROjZ1EHTXTILff-fix5IuEKwvqgd_t4,24989
|
|
@@ -454,15 +455,15 @@ ansible/modules/sysvinit.py,sha256=Nrs5gLyHKZsqtm_ymFO0e0wB2KSDXYfbDt-uNlgUiF0,1
|
|
|
454
455
|
ansible/modules/tempfile.py,sha256=3ZljXNOu06T5ObTAz5Ktm_WKFrJACHwLf-01F7isf5A,3570
|
|
455
456
|
ansible/modules/template.py,sha256=y1zu-ZZ0P-Cpxjddzk5V5GVpQNNfQL8E5sVeAb2plR0,4537
|
|
456
457
|
ansible/modules/unarchive.py,sha256=8ZyzMUsnQ_ejYt2pNCEkPvvErbm2hVWtDVlxX5jdM1M,45922
|
|
457
|
-
ansible/modules/uri.py,sha256=
|
|
458
|
-
ansible/modules/user.py,sha256=
|
|
458
|
+
ansible/modules/uri.py,sha256=Qe2K_wtQihx0HWihT3L2AsJ_FrhFuZ3CPIY5bV_qaFw,27766
|
|
459
|
+
ansible/modules/user.py,sha256=CS_Bpv9VAUSARkY6R-dzIlOZddZWXMqaBT-C_hEJ-6w,123945
|
|
459
460
|
ansible/modules/validate_argument_spec.py,sha256=OMIAGE2L2FZLEhyV-VEpVN8wPAuJeovQhpPVwXmdL5Q,3209
|
|
460
|
-
ansible/modules/wait_for.py,sha256=
|
|
461
|
-
ansible/modules/wait_for_connection.py,sha256=
|
|
462
|
-
ansible/modules/yum_repository.py,sha256
|
|
461
|
+
ansible/modules/wait_for.py,sha256=lbLlA9d0TEfkgJcf9Q5mL0rU-JEQeZGSD8-EOOW9vno,28084
|
|
462
|
+
ansible/modules/wait_for_connection.py,sha256=U7yQEXyWnrTGpaBAfMF1KFQpg3ZhX4QjZdiCOBrZR-U,3409
|
|
463
|
+
ansible/modules/yum_repository.py,sha256=3kV5z7nTdLWuYPKT292aj-p8Z4UXwaSKxcXzQktUUkU,23852
|
|
463
464
|
ansible/parsing/__init__.py,sha256=NMP9ZkK59SNdQktw76aWAXVAm5U2POXLgAK7wH-1h0g,742
|
|
464
465
|
ansible/parsing/ajson.py,sha256=nv82WTeWYuKdy4LE_YM6nhLR7eb-Tyr4F6arjTP8nmY,692
|
|
465
|
-
ansible/parsing/dataloader.py,sha256=
|
|
466
|
+
ansible/parsing/dataloader.py,sha256=2znBPFGXFcYKuTCDJ48so9JMsYc1kBN_HV2PixSDQqI,22365
|
|
466
467
|
ansible/parsing/mod_args.py,sha256=5-JzLXH1sW9XxyeZgNOEqWt8_I6cPl2C9VwZQ_3z1K8,15090
|
|
467
468
|
ansible/parsing/plugin_docs.py,sha256=UYWDpLCF4FrBU0lxgR6C2bkoa7N8TBplh4KcW-B6enk,6326
|
|
468
469
|
ansible/parsing/quoting.py,sha256=myYxG625XK6rgNULbBuKp23G2R83c0UilrF1ZImDjGs,1057
|
|
@@ -471,41 +472,41 @@ ansible/parsing/utils/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6
|
|
|
471
472
|
ansible/parsing/utils/addresses.py,sha256=gxdde1fWiOiG6r8wrwBuQS9EdbHxTQJA1peIl0mz47Y,8084
|
|
472
473
|
ansible/parsing/utils/jsonify.py,sha256=mDFpCkxbn7mZQoBtN3occq4EzaSxdmol9LJwXB0-T5g,1279
|
|
473
474
|
ansible/parsing/utils/yaml.py,sha256=F3PQLD7ptyIB3DkutFPotjbuwhQ02YDtK0guLLs5zpo,2325
|
|
474
|
-
ansible/parsing/vault/__init__.py,sha256=
|
|
475
|
+
ansible/parsing/vault/__init__.py,sha256=zUbLkh1AxxwPRm0g1L200t_o0G4TaNthkCqUix7DdfI,60059
|
|
475
476
|
ansible/parsing/yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
476
477
|
ansible/parsing/yaml/dumper.py,sha256=_GyNiVEk-ivwYtl9qkPe11_6FJA-tZGlt6jOqwdQQpk,298
|
|
477
478
|
ansible/parsing/yaml/loader.py,sha256=REAzmajcwu2Vld9IEl62dPRTMHBY_iJGVYE3IKNhx4o,298
|
|
478
479
|
ansible/parsing/yaml/objects.py,sha256=muP81NhLvhJAh9MZ5UTUp8AMUTkTKM4Pk-xl6gOeV1s,2150
|
|
479
480
|
ansible/playbook/__init__.py,sha256=5FKnJsBz35UvBbwyiLrniAwkdse8jTRzjOrI0RLU05E,4766
|
|
480
481
|
ansible/playbook/attribute.py,sha256=kAWselKvFurdGC0EaKJLh8b9y7IWChZwXG648aH6S-4,7800
|
|
481
|
-
ansible/playbook/base.py,sha256=
|
|
482
|
-
ansible/playbook/block.py,sha256=
|
|
483
|
-
ansible/playbook/collectionsearch.py,sha256=
|
|
482
|
+
ansible/playbook/base.py,sha256=DL_jvJQ_E21xkyLsZrUxOEUQ0DyQ3XafKo57icx797Y,33809
|
|
483
|
+
ansible/playbook/block.py,sha256=SkEwtHHFGI3gadaF9YhuXH5vjsfwwK5TNqFuayGwD_Y,14383
|
|
484
|
+
ansible/playbook/collectionsearch.py,sha256=GO3tuBSKVeMnfp1xGtGSdHRZzk3eYMhL_zYVCLVcqYA,1828
|
|
484
485
|
ansible/playbook/conditional.py,sha256=oq0Adm8LwibKuBC0LTk1TsQcqS1ZwPjSQuM2FUeip8g,1317
|
|
485
486
|
ansible/playbook/delegatable.py,sha256=BBcw2GU85V7ome7qX0KRg-vZyjv2J890kEHjYQOyoTk,625
|
|
486
|
-
ansible/playbook/handler.py,sha256=
|
|
487
|
+
ansible/playbook/handler.py,sha256=2LItktoUgVDejUeoxOJbUqjob8INJFALq6FAUSFEzOE,2735
|
|
487
488
|
ansible/playbook/handler_task_include.py,sha256=kCrBThzmIRWKaecLl9UNB8VBvtVPI0dt8eHpBldsnlY,1391
|
|
488
|
-
ansible/playbook/helpers.py,sha256=
|
|
489
|
-
ansible/playbook/included_file.py,sha256=
|
|
489
|
+
ansible/playbook/helpers.py,sha256=FAKTvIb99W8JRBBuK_kJCnd3UP-U_YmiLYTzHrd9j-4,14829
|
|
490
|
+
ansible/playbook/included_file.py,sha256=WgPV0H0f4V11nauyQC5u_gPiWWuocMEHGU7vgR3qbWg,12027
|
|
490
491
|
ansible/playbook/loop_control.py,sha256=5rZz6aWXpvvwOD4CzrS_b_cnXIu4Gf56czkomX1NS7w,2022
|
|
491
492
|
ansible/playbook/notifiable.py,sha256=MQz4VZuOga35VLcdUxVd9FQVzFg-djtQZhs09DS2juA,299
|
|
492
|
-
ansible/playbook/play.py,sha256=
|
|
493
|
-
ansible/playbook/play_context.py,sha256=
|
|
493
|
+
ansible/playbook/play.py,sha256=KiKImFJfJIZoWpjpJu_2LKq8Sk3RtWDBUTpcRglU6LE,19579
|
|
494
|
+
ansible/playbook/play_context.py,sha256=nfluy9HF2bI-LoFCNImpE33EGN_L5Zx8rmvIzVtzrlM,13847
|
|
494
495
|
ansible/playbook/playbook_include.py,sha256=zTzEsS20DB9hSzRfU9DI4-BsteHwzWVshUF_SoIVVE0,5515
|
|
495
|
-
ansible/playbook/role_include.py,sha256=
|
|
496
|
-
ansible/playbook/taggable.py,sha256=
|
|
497
|
-
ansible/playbook/task.py,sha256=
|
|
496
|
+
ansible/playbook/role_include.py,sha256=MZd0EnPjQstRg0-AZBso1iCT8Vr9vThAwyBXeaHpjPg,7551
|
|
497
|
+
ansible/playbook/taggable.py,sha256=Hc4ORGEr-EtqndaaZcoG87lxRk6YViK1jVPBowwQbgs,4052
|
|
498
|
+
ansible/playbook/task.py,sha256=7JVmtstx2IIQUvt1x6zrLg1JDu_miJ0nzPTUJPzE1Zs,25203
|
|
498
499
|
ansible/playbook/task_include.py,sha256=y7jSK7CqYEXmXShJOPUi3lCYuZI85197Gp4zLYsyUPw,5258
|
|
499
|
-
ansible/playbook/role/__init__.py,sha256=
|
|
500
|
-
ansible/playbook/role/definition.py,sha256=
|
|
501
|
-
ansible/playbook/role/include.py,sha256=
|
|
502
|
-
ansible/playbook/role/metadata.py,sha256=
|
|
503
|
-
ansible/playbook/role/requirement.py,sha256=
|
|
500
|
+
ansible/playbook/role/__init__.py,sha256=A5l0WaEqSBQBkYHvdVXZ7KnFlm_gmSxkX6cWqK05gok,28610
|
|
501
|
+
ansible/playbook/role/definition.py,sha256=R7LIpQyBQULlciGhS9Yr6vBb_EtKe-FmySTvFuy6NWw,9400
|
|
502
|
+
ansible/playbook/role/include.py,sha256=a5SXi1OZshHlzbHtZYdIlwVKU9Tx6G3fw0-TOEvR4Kc,2091
|
|
503
|
+
ansible/playbook/role/metadata.py,sha256=DTIOiP7w-wYNMc8P2IXbQ9TYjiN1ZFUtVqYCQeF1beM,4624
|
|
504
|
+
ansible/playbook/role/requirement.py,sha256=wIkhahTuA_4BM0UabT-iStKlGY30gO9JiroUPVSXCGY,4114
|
|
504
505
|
ansible/plugins/__init__.py,sha256=Rxl7OPg_ndRCRc9mvS9gwogy4wTlR00kaJ9KnUSNCeo,8042
|
|
505
506
|
ansible/plugins/list.py,sha256=yfAg8xseUyTSH68IV4NbbXRjYJxDcDyfVXgD8l5Eh9o,11410
|
|
506
|
-
ansible/plugins/loader.py,sha256=
|
|
507
|
-
ansible/plugins/action/__init__.py,sha256=
|
|
508
|
-
ansible/plugins/action/add_host.py,sha256
|
|
507
|
+
ansible/plugins/loader.py,sha256=ZQcEUfhHd1CpZAH7kVSzkMggu5qW3STIHiwW1NW-wC4,82244
|
|
508
|
+
ansible/plugins/action/__init__.py,sha256=uN5pZ-7d8pHn_oSVgaN9TQOZZ5ttQMZWOm6D7jq1w0Q,69356
|
|
509
|
+
ansible/plugins/action/add_host.py,sha256=-TNdlD0nKXr47sRMf6aY7kWYUZZSHtY2qkiLxm3S5xs,3516
|
|
509
510
|
ansible/plugins/action/assemble.py,sha256=gai336EN6ipGdoRPk6sLTBUrHUzviyMnj9UfMvYgg1Y,6153
|
|
510
511
|
ansible/plugins/action/assert.py,sha256=3xnitAOPRW-_5ztZ8ePB3fs3-ukqsLa09hgBwjhYWx0,4015
|
|
511
512
|
ansible/plugins/action/async_status.py,sha256=_kcqeVJ6rrLKS_nGr4z1wApVCHC9pBU66YcuCTchasg,1964
|
|
@@ -514,46 +515,46 @@ ansible/plugins/action/copy.py,sha256=dq8wGc83xYyRc9X887QnOJxdRAt0rB2-NJQxuxowCl
|
|
|
514
515
|
ansible/plugins/action/debug.py,sha256=KPWtGEPbc119_e1rNQztCB-wzelJObAv16qJNHPUNb4,3604
|
|
515
516
|
ansible/plugins/action/dnf.py,sha256=2ObzxBLRPBPy2JCp3wWRzR1fIEHzhS5y34CoAzTXqN0,3664
|
|
516
517
|
ansible/plugins/action/fail.py,sha256=MzIefYaHaRdpjgnqc9eNge0P32btlTPzO6TB22jkadk,1457
|
|
517
|
-
ansible/plugins/action/fetch.py,sha256=
|
|
518
|
+
ansible/plugins/action/fetch.py,sha256=4lNe-55Fy1Ph33m26xLLn6OfYqsRE5nBBKSz0v2jG0s,10047
|
|
518
519
|
ansible/plugins/action/gather_facts.py,sha256=vr-3BJiBDP25aJd9e1uydpS3r8Np2T6nubUbYAls58w,9109
|
|
519
|
-
ansible/plugins/action/group_by.py,sha256=
|
|
520
|
-
ansible/plugins/action/include_vars.py,sha256=
|
|
520
|
+
ansible/plugins/action/group_by.py,sha256=O1PfwBJ4wLyE0BMOhhSfx8tlTYQHT1V-_ZZDD6ShE3Q,1835
|
|
521
|
+
ansible/plugins/action/include_vars.py,sha256=tYsdXiV-NGBJkJ_uhS5Rybp7HJ9_X6Iz_2Ug9ZbZ44A,11436
|
|
521
522
|
ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
|
|
522
523
|
ansible/plugins/action/package.py,sha256=F49tAgsQpeVxHiraLQW_LyjAHyTCaZty1GS6Zv2UwYE,4807
|
|
523
524
|
ansible/plugins/action/pause.py,sha256=dlBT3oSreP_Wp850MarMuNuROF_UiBfJ6ccexkV94zU,5674
|
|
524
525
|
ansible/plugins/action/raw.py,sha256=4kmANddcBwXFRhu8zIwBu392QE-p7WReO4DWD1YDnGU,1762
|
|
525
526
|
ansible/plugins/action/reboot.py,sha256=EFTn8KtawFI4E38COh55_ygDe0vkpI_vMdHDNBKB5ao,22032
|
|
526
|
-
ansible/plugins/action/script.py,sha256=
|
|
527
|
+
ansible/plugins/action/script.py,sha256=CQybOvAGnsyRc1otuW_JhiiYat1Wgm6R2PpSMfc0CLk,8661
|
|
527
528
|
ansible/plugins/action/service.py,sha256=H3byRUoOITfEvIDnjuX7LunDVc6KiliXn3mT3R0BxiE,4298
|
|
528
529
|
ansible/plugins/action/set_fact.py,sha256=G1Q0HcTaXFIykNvjSG65tFkif0dMuvMvt3T44OlrB6Y,2186
|
|
529
530
|
ansible/plugins/action/set_stats.py,sha256=wRmlGzp5TAaLrPlz2O6kL6F_uSGYBaxtnF4jWmB3qeY,2476
|
|
530
531
|
ansible/plugins/action/shell.py,sha256=pd7Dm6gAZXWNAqANd7ETHSs90le7VXAxe7pB97T_zwU,1527
|
|
531
|
-
ansible/plugins/action/template.py,sha256=
|
|
532
|
+
ansible/plugins/action/template.py,sha256=Ht5x_zAl3D8ZxHzrdf_CBpUppdNlWQ-qd5S5dytt1FM,8526
|
|
532
533
|
ansible/plugins/action/unarchive.py,sha256=9ocpE3QnpvnZTQcE_Rf1et3iG1sqCmW9yzy1BvlbDDY,4422
|
|
533
|
-
ansible/plugins/action/uri.py,sha256=
|
|
534
|
+
ansible/plugins/action/uri.py,sha256=VZHkIZVu-f7rH_q8GYDLTC41ngVZjfsEZjpLt13nv_M,3434
|
|
534
535
|
ansible/plugins/action/validate_argument_spec.py,sha256=U-g8PugBg3QTTqkKQwtOS3NNou12yT4NQtXqJ10qBw8,3937
|
|
535
536
|
ansible/plugins/action/wait_for_connection.py,sha256=ALvq83mqFmZ1S8pmdOwdVqQxKax90De5U3dZBKjC_dU,4564
|
|
536
537
|
ansible/plugins/become/__init__.py,sha256=oifRA8cKuxrBxqiwVdT0UX8nOEZuX-VV6-I1LqvbI1Y,5210
|
|
537
538
|
ansible/plugins/become/runas.py,sha256=nBAuuQDpqWHs5yGFPa6JvPmhOZ9J8tlMM32euJI4_lk,5325
|
|
538
539
|
ansible/plugins/become/su.py,sha256=tkS-mp48ZY93lXFDjcBx6XbPrirTbcFOySnxNS5Fvhg,5424
|
|
539
540
|
ansible/plugins/become/sudo.py,sha256=gGgWn1uQDQYV6qZykTjC_xBIArrwpsZXn7cTlpbj1cE,4809
|
|
540
|
-
ansible/plugins/cache/__init__.py,sha256=
|
|
541
|
+
ansible/plugins/cache/__init__.py,sha256=AZv3THBdW0OYSUoPqBlN0iNoSEw31FSYzyhtypOlvuw,12021
|
|
541
542
|
ansible/plugins/cache/base.py,sha256=bBRxjoyZ4Y18O4MGH_U5uI8NQiPDRZzxWKjMqyvta4Y,1143
|
|
542
543
|
ansible/plugins/cache/jsonfile.py,sha256=BVmwy7KgUkEDRgq1f82NQTQUEpxn0MIfbtExHSP5s_I,1659
|
|
543
544
|
ansible/plugins/cache/memory.py,sha256=AzxNRhijtssd2xZoEQYO4kiYh8OQZeE0vFgngla-QPE,1166
|
|
544
|
-
ansible/plugins/callback/__init__.py,sha256=
|
|
545
|
+
ansible/plugins/callback/__init__.py,sha256=3BJPYb1g0yeJL9nCeOA9_ePTtySwhiB0Xzc3FK5H0Io,31195
|
|
545
546
|
ansible/plugins/callback/default.py,sha256=_jK4lWCocMMbA01bLtjOkcjMIarAukTfotPCqMivAHA,17522
|
|
546
547
|
ansible/plugins/callback/junit.py,sha256=VDe4Dt972T2Y0KC9WVqIfy6YlpK_Pk9QxxY-5Wn7aZY,14520
|
|
547
548
|
ansible/plugins/callback/minimal.py,sha256=4POsci-dcNcqS34_N6OHfnQEdWRYNou0gpp7n2Icjsw,3237
|
|
548
549
|
ansible/plugins/callback/oneline.py,sha256=GoAhI9TVsrf-4cXXeu6VK2a9Pd0c_Ko2MPp0FlzeepI,4173
|
|
549
550
|
ansible/plugins/callback/tree.py,sha256=7_Zu85ZphlvbF1FywJg5E0-2qTMMy3LQmTafTyEB8i8,3619
|
|
550
551
|
ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42AKMy1E,22719
|
|
551
|
-
ansible/plugins/connection/__init__.py,sha256=
|
|
552
|
-
ansible/plugins/connection/local.py,sha256=
|
|
552
|
+
ansible/plugins/connection/__init__.py,sha256=2pjLkoi6lpjebgqyWqkl4rAlBTmHDWlU1McVMsnRx1E,19456
|
|
553
|
+
ansible/plugins/connection/local.py,sha256=4Ebuo-qkDE7lz0CtSYPHjQ_2ofRfRt8PFQ928M_grdk,12041
|
|
553
554
|
ansible/plugins/connection/paramiko_ssh.py,sha256=F6sjILG7nnC4cka-7kQotBcT_1yzU4WeaOTMKa3-OUQ,27681
|
|
554
|
-
ansible/plugins/connection/psrp.py,sha256=
|
|
555
|
-
ansible/plugins/connection/ssh.py,sha256=
|
|
556
|
-
ansible/plugins/connection/winrm.py,sha256
|
|
555
|
+
ansible/plugins/connection/psrp.py,sha256=9aTA3XMpmVHwo0cQCK4FWswZP7t6FYZ2JzCW9VMXm_A,30847
|
|
556
|
+
ansible/plugins/connection/ssh.py,sha256=lYNbCaPB1AVs6E7_315AjCU9wyFDJZhgVkYOkVkr8wU,71589
|
|
557
|
+
ansible/plugins/connection/winrm.py,sha256=lsEE0b-J7tpmLDpWnyOurEOoqXgOWGbHEVQkG4Xbss4,38390
|
|
557
558
|
ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
558
559
|
ansible/plugins/doc_fragments/action_common_attributes.py,sha256=Xj26JljzTDZD9aZw6nBSvdW-i5z8M7Fk6rzQqNsYKm8,2442
|
|
559
560
|
ansible/plugins/doc_fragments/action_core.py,sha256=y8SZ8aTI4Imrm7TZPyEje4Mp5_Qc-itky7y9YfSo_vE,2855
|
|
@@ -565,7 +566,7 @@ ansible/plugins/doc_fragments/decrypt.py,sha256=gTRUiNTINhI80f97LVxNzjTs1GEgTfcQ
|
|
|
565
566
|
ansible/plugins/doc_fragments/default_callback.py,sha256=w8qnzrpFjWEyQB8GhdEICV3Yhnd4FY-rN0Fvu55ksP4,3212
|
|
566
567
|
ansible/plugins/doc_fragments/files.py,sha256=MkzsSvm2KnJr-Yhrv-k8xOi2rVyH9N7tAM4MV9zozn0,4760
|
|
567
568
|
ansible/plugins/doc_fragments/inventory_cache.py,sha256=XcFfKgP9EeHN_2Qh_Cjey95n9smU6ihDaZ0Eanv4mJw,1928
|
|
568
|
-
ansible/plugins/doc_fragments/result_format_callback.py,sha256=
|
|
569
|
+
ansible/plugins/doc_fragments/result_format_callback.py,sha256=uW-PevaskfNyrgqu0a9M7lKj1VBO-0Q3WrydeqEZ0pY,2623
|
|
569
570
|
ansible/plugins/doc_fragments/return_common.py,sha256=axy1N_KIZNvfZZAZAPiortPxCtDY3MXpSDIM-iroEXk,1034
|
|
570
571
|
ansible/plugins/doc_fragments/shell_common.py,sha256=wbxQ33AoYRKAtlbjDOEnripm7xoZ7u27bl0b6xy8d1M,3282
|
|
571
572
|
ansible/plugins/doc_fragments/shell_windows.py,sha256=3xXqJ72CiRAS4FlFBiL41WGN-0cfTsnWAduPXCsbHBY,1234
|
|
@@ -584,11 +585,11 @@ ansible/plugins/filter/combinations.yml,sha256=LttrIICjapNtZHWnvJD-C9Pv3PIKP16i8
|
|
|
584
585
|
ansible/plugins/filter/combine.yml,sha256=QH2zy4qr9wPpEyr-XKmphbls60M4ZSdAkj7r3cuvC3Q,1671
|
|
585
586
|
ansible/plugins/filter/comment.yml,sha256=nJVzBF2Qiwa-qQRioJK42cbWt3Rb5LYmfvGPhrhU8Rc,2139
|
|
586
587
|
ansible/plugins/filter/commonpath.yml,sha256=SPx3fPy4GPJaKmY2S8aJI1I800FOgErYAKVXV1etp1Q,696
|
|
587
|
-
ansible/plugins/filter/core.py,sha256=
|
|
588
|
+
ansible/plugins/filter/core.py,sha256=m_O2HSUb-0ZVCMu5Id7jL87-l_81rMDHnvoIc636Y8A,27283
|
|
588
589
|
ansible/plugins/filter/dict2items.yml,sha256=A3gL25dyGrSqP44PtqQgg6paUnwReAzC7Brkqel-39E,1523
|
|
589
590
|
ansible/plugins/filter/difference.yml,sha256=YJnJJMYejCcBaNgxFBhYj-z6OysRHmss1gUgrIJBQFk,1091
|
|
590
591
|
ansible/plugins/filter/dirname.yml,sha256=Z7p7ay8s3_Zee6gIu7qr4wUC-an7lwLwuoVmgHQCKyg,820
|
|
591
|
-
ansible/plugins/filter/encryption.py,sha256=
|
|
592
|
+
ansible/plugins/filter/encryption.py,sha256=MHZ1EyslF1RyOG9NCNQ0sqjtGmkF7pPoAJj5EDH7vkA,2450
|
|
592
593
|
ansible/plugins/filter/expanduser.yml,sha256=P_AD4oBYbADe2f7pzHjbnkM95t8P1OzN0S3AHLT6C9o,506
|
|
593
594
|
ansible/plugins/filter/expandvars.yml,sha256=KqtMP_oHLXsKFxHn_3iKX5PPGV5l-yhWX1jPD-sJOeE,569
|
|
594
595
|
ansible/plugins/filter/extract.yml,sha256=vZ4MJ2bosxriZTCVyMCqBs85XczqRP6rlePT0-bxfU0,1367
|
|
@@ -604,7 +605,7 @@ ansible/plugins/filter/intersect.yml,sha256=9QNicYe8aL3Lb1fwXTRe_qntvzqQ8n1ORZZ7
|
|
|
604
605
|
ansible/plugins/filter/items2dict.yml,sha256=56H1AnvCt6P2F7UByycH6Xr5Ux9qrxskuGMOWXg2HTE,1561
|
|
605
606
|
ansible/plugins/filter/log.yml,sha256=QRklpKa4SFsiv2BG6tIk1gKMttjordhmsqIp29nuX5M,904
|
|
606
607
|
ansible/plugins/filter/mandatory.yml,sha256=jIxMjvuTVbuNUJZAUbBy6v3Kciibju5vOftWvUjsvNA,785
|
|
607
|
-
ansible/plugins/filter/mathstuff.py,sha256=
|
|
608
|
+
ansible/plugins/filter/mathstuff.py,sha256=_TIR1MHvDq1EPR4Wr1XzMHusjdoB2b6n289fp-k6E9U,7432
|
|
608
609
|
ansible/plugins/filter/md5.yml,sha256=uhC6FIFdWGEOsE4wPcIB0HBgvnfGIeCWQKzVighPywY,709
|
|
609
610
|
ansible/plugins/filter/normpath.yml,sha256=2yxsmEWJ7hsmrU8-_hvb8R_VL8ybXsnI8RCX6aN-Khk,628
|
|
610
611
|
ansible/plugins/filter/password_hash.yml,sha256=hfDJ0gCEk1_x16spW5u8HLZOBApnJSyCpJe-XeEzODg,1792
|
|
@@ -633,9 +634,9 @@ ansible/plugins/filter/ternary.yml,sha256=HXfaNHqsRc698BBAxIBK11vMJnlYXOf6cpNIky
|
|
|
633
634
|
ansible/plugins/filter/to_datetime.yml,sha256=xm6YuP9cCV-5OzRxO0y8YKZuOt0nBYZe2tJHqtDUzfM,2691
|
|
634
635
|
ansible/plugins/filter/to_json.yml,sha256=83GtE5oGoimh6RzkkY7cuF4-hqolzoD46WCRAtXzkOI,2791
|
|
635
636
|
ansible/plugins/filter/to_nice_json.yml,sha256=ezx2wgb3SG_mQh_B7aRDeWZqg65YTuh1zUonCjhtsTQ,2532
|
|
636
|
-
ansible/plugins/filter/to_nice_yaml.yml,sha256=
|
|
637
|
+
ansible/plugins/filter/to_nice_yaml.yml,sha256=KrvvKlUdvirYoQHNzPtWtPqd6NU009y9SUnPuEqgMdA,2135
|
|
637
638
|
ansible/plugins/filter/to_uuid.yml,sha256=MA3ne76BORb2LBjginpFoPZYeQAvwd0fsZt_I5VjZMw,785
|
|
638
|
-
ansible/plugins/filter/to_yaml.yml,sha256=
|
|
639
|
+
ansible/plugins/filter/to_yaml.yml,sha256=YjEFiAH3FmbC5LmiogDVF68dRiHh7te296J8x21HFD8,2107
|
|
639
640
|
ansible/plugins/filter/type_debug.yml,sha256=xrs13AsR9lV9hRmqsUg4U6zApJpYGCMspUI3or2AdYk,508
|
|
640
641
|
ansible/plugins/filter/union.yml,sha256=qBIbwRisbsImGixrLj6YDYXJSUGziZkjt_4aJsbhcj0,1018
|
|
641
642
|
ansible/plugins/filter/unique.yml,sha256=aip4HWd5ZCgg7wYFB6CUqLK0ldrY7qd2Wb_MlTtee3M,1592
|
|
@@ -650,7 +651,7 @@ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQ
|
|
|
650
651
|
ansible/plugins/filter/zip.yml,sha256=LEtp9xRWuPjWDHyHdm1rVYbe1k9hdxGToLrNriRgHc4,1352
|
|
651
652
|
ansible/plugins/filter/zip_longest.yml,sha256=VHaZlibbKoh9F9cxo9Z7EakellHAvJAsliVRS4Mq_co,1256
|
|
652
653
|
ansible/plugins/httpapi/__init__.py,sha256=k5YFXPK7gug-6LkI5gihNZR5cMY6N1uRKT4wOYRWdOE,3093
|
|
653
|
-
ansible/plugins/inventory/__init__.py,sha256=
|
|
654
|
+
ansible/plugins/inventory/__init__.py,sha256=nvjH_Y9qVyH5SNvIsq2qMbWKfoSQQLc619KVNJstXig,21731
|
|
654
655
|
ansible/plugins/inventory/advanced_host_list.py,sha256=9PlZtS78C7uI7Y-ypfwP2u9scck6hA64TVVAX6Ovs-I,2273
|
|
655
656
|
ansible/plugins/inventory/auto.py,sha256=bGznhN4RfFLznnth2C4QxCfbVdxzyQsmoT6sp8tneIY,2876
|
|
656
657
|
ansible/plugins/inventory/constructed.py,sha256=N1oj4IDE6rXqTd3r0yGtuwLNYtuzbBRbhFkG-Jawhig,7353
|
|
@@ -658,8 +659,8 @@ ansible/plugins/inventory/generator.py,sha256=90Zhmt3MK5_Nfz4lL3jjozO0p8eiIlz2Wq
|
|
|
658
659
|
ansible/plugins/inventory/host_list.py,sha256=DZayr155_Izfb5YGvzL7OMyWc-QQwyg04h5eDaFq8P8,2348
|
|
659
660
|
ansible/plugins/inventory/ini.py,sha256=7kkySGQYkXDISkh2JrK0izI8HfeMnSzD8nY28ZunQok,19358
|
|
660
661
|
ansible/plugins/inventory/script.py,sha256=kYQdNHM16TZXOGNNHEXYC0xuaDknylcZcj3DQBHFahQ,15227
|
|
661
|
-
ansible/plugins/inventory/toml.py,sha256=
|
|
662
|
-
ansible/plugins/inventory/yaml.py,sha256=
|
|
662
|
+
ansible/plugins/inventory/toml.py,sha256=NiWAgbbLXXGD8Y1g83_LYve2sVg-dM68--u1KvWwHKY,5364
|
|
663
|
+
ansible/plugins/inventory/yaml.py,sha256=td4ELEH0tk7CG94NsKL4lehJTtMpzNpGKJ_iA_iOzuw,7471
|
|
663
664
|
ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
|
|
664
665
|
ansible/plugins/lookup/config.py,sha256=3ltQo3kECUM-BDNxT0HCUg7vaHYltuszdEOdOZHIuCw,5857
|
|
665
666
|
ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
|
|
@@ -675,23 +676,23 @@ ansible/plugins/lookup/items.py,sha256=I6cAgTeG3udNXNjUOjHJkYVgh97nLg4ZZ-PCWpTGs
|
|
|
675
676
|
ansible/plugins/lookup/lines.py,sha256=et0Zf-A0G4pUtqWnGL-2ryklEQyviNp4sP5cpwijnkM,2786
|
|
676
677
|
ansible/plugins/lookup/list.py,sha256=KEZIjIDQVZPZfqY1ToG5a6xxE7lWMt9CGLlGDJpbV3U,1074
|
|
677
678
|
ansible/plugins/lookup/nested.py,sha256=aQkVZi0tDcoyL_cpOrHH7epLDoyFXDO8H5csp_acWrk,1995
|
|
678
|
-
ansible/plugins/lookup/password.py,sha256=
|
|
679
|
+
ansible/plugins/lookup/password.py,sha256=70NomLAwF2ueKkdNPmys5-Uy1KxSxPi6tSnyXFiuMHc,17446
|
|
679
680
|
ansible/plugins/lookup/pipe.py,sha256=6URDPkYLi5nmaz1C5KqL40o_CxwQnnTr9zJ97Z39FBI,2789
|
|
680
681
|
ansible/plugins/lookup/random_choice.py,sha256=d7oKWfExsvHKA2tOs-8UWnWNlFxu3y3kDkhKaaaTOxo,1543
|
|
681
682
|
ansible/plugins/lookup/sequence.py,sha256=LQubZqrZgL20ZCk8rr6WqLeZr86OaHCyyz0MHow3EhM,8569
|
|
682
|
-
ansible/plugins/lookup/subelements.py,sha256=
|
|
683
|
+
ansible/plugins/lookup/subelements.py,sha256=WeAi90CDCSJL8yjhWcm_XuXfeodmcWCZfpvf_GL4DCc,6066
|
|
683
684
|
ansible/plugins/lookup/template.py,sha256=RqFj2-dFxflQNmAU4681vlY4-3v9-nmhQ2gqppxlY6s,7736
|
|
684
685
|
ansible/plugins/lookup/together.py,sha256=WAtJ2jagHIDL0GaOhnACA1Uh4jVtAGTZqgk61hz_ego,1768
|
|
685
686
|
ansible/plugins/lookup/unvault.py,sha256=EMS-dOg5b923Rku0lXV-2Gy_Gh7-MLNwT1Lj9hNy8DU,1837
|
|
686
|
-
ansible/plugins/lookup/url.py,sha256
|
|
687
|
-
ansible/plugins/lookup/varnames.py,sha256=
|
|
687
|
+
ansible/plugins/lookup/url.py,sha256=-Ky4lHilypV-_LHSvrtEFB6u25KGsoIAU_x-aJu9HOU,9162
|
|
688
|
+
ansible/plugins/lookup/varnames.py,sha256=q8tX54SUSWjicOFFTJ16n8UyZonb_mYgB5_hwOb_NAM,2536
|
|
688
689
|
ansible/plugins/lookup/vars.py,sha256=gxADVj2vdF_AA612NihSY3HbacczOdr91UqkeaS7xu4,3266
|
|
689
690
|
ansible/plugins/netconf/__init__.py,sha256=50w1g2rhUo6L-xtiMT20jbR8WyOnhwNSRd2IRNSjNX4,17094
|
|
690
|
-
ansible/plugins/shell/__init__.py,sha256=
|
|
691
|
+
ansible/plugins/shell/__init__.py,sha256=JKoV0XKCJc_dUlTpXDakoUZXu8AQaRRmimH1IDpTuzk,10975
|
|
691
692
|
ansible/plugins/shell/cmd.py,sha256=tH1OZ9RKtNOzOjIJ_XlPcnz0T29LLkIl7X6qlDXZHGA,2170
|
|
692
|
-
ansible/plugins/shell/powershell.py,sha256=
|
|
693
|
+
ansible/plugins/shell/powershell.py,sha256=oHL9KhQC6AZI2BzWRRZNoBZ7_-LBBFTngKrcUmkX_7M,17259
|
|
693
694
|
ansible/plugins/shell/sh.py,sha256=WhhXBH0ZTBeoUHEtSHS5N9jekxzRNZkSe-d1BYGle10,3687
|
|
694
|
-
ansible/plugins/strategy/__init__.py,sha256=
|
|
695
|
+
ansible/plugins/strategy/__init__.py,sha256=lwYxIwJm44ljqGI2wLTPUwYc1WCGfK4OuDv9tHUN0t8,56486
|
|
695
696
|
ansible/plugins/strategy/debug.py,sha256=LJaaals9GQq82Idq4D39NnJrYZPcZiLcu14GsIb3SI8,1205
|
|
696
697
|
ansible/plugins/strategy/free.py,sha256=gnH0U1BzBzvU0SuOYgFt7A315XQiIvvgHmxR9cLyxoA,15656
|
|
697
698
|
ansible/plugins/strategy/host_pinned.py,sha256=sVB_qb26bByZKjr8AdvBrLHkt-6VyFGjFcVj1udcFvk,1875
|
|
@@ -704,12 +705,12 @@ ansible/plugins/test/any.yml,sha256=urB1M9FK_RXOeN8oJLdMfn884pnB6yv1wC1mdA84_vE,
|
|
|
704
705
|
ansible/plugins/test/change.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
|
|
705
706
|
ansible/plugins/test/changed.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
|
|
706
707
|
ansible/plugins/test/contains.yml,sha256=Tb-rCKkGUo4fSpY3lrAlyjJrzN8H0A2Uv1LN_HMPMQg,1288
|
|
707
|
-
ansible/plugins/test/core.py,sha256=
|
|
708
|
+
ansible/plugins/test/core.py,sha256=05J9rgx7lB3NeEazF9kLmewztj_OshfDpYWWWGLa00M,11201
|
|
708
709
|
ansible/plugins/test/directory.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
|
|
709
710
|
ansible/plugins/test/exists.yml,sha256=R8lteO8uYy-XelgK7nK3U_sTUDz0DrTO2BAUr8ltgrM,885
|
|
710
711
|
ansible/plugins/test/failed.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7erA0,803
|
|
711
712
|
ansible/plugins/test/failure.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7erA0,803
|
|
712
|
-
ansible/plugins/test/falsy.yml,sha256=
|
|
713
|
+
ansible/plugins/test/falsy.yml,sha256=zoK1YNP94tRd0mDHinoZn4a0ODMZiBFVjiKEAU6L0BU,823
|
|
713
714
|
ansible/plugins/test/file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
|
|
714
715
|
ansible/plugins/test/files.py,sha256=YvdrNZ23EOKIttRBiwThij4sPgbFvgOvgc2Uw9RiMM4,1407
|
|
715
716
|
ansible/plugins/test/finished.yml,sha256=tJ5NDBpiuk-VVq0-Q1CHVi4vI0eZjzT9o43iU5HJvgo,702
|
|
@@ -729,7 +730,7 @@ ansible/plugins/test/mathstuff.py,sha256=YUKnAGOlduf4-zt-ZrTu1cPhMN-MaBM3EAD8g1z
|
|
|
729
730
|
ansible/plugins/test/mount.yml,sha256=gq7irjxXXKKZqI6FbBZ5UprwzTPvFAKg3EW_UC0Dpgw,596
|
|
730
731
|
ansible/plugins/test/nan.yml,sha256=fpIP-SlouWQcgdp3xu77o2yjhcQa95KYPT8x0idgvqE,584
|
|
731
732
|
ansible/plugins/test/reachable.yml,sha256=6gyka3pynhXmb17srhnoYE6f9NPiXLFVRbk6EtLBrtU,692
|
|
732
|
-
ansible/plugins/test/regex.yml,sha256=
|
|
733
|
+
ansible/plugins/test/regex.yml,sha256=WXadZHEgAfKDOYA0g4DTTZ8fXkeRms-WCd1NNMlvuo8,1353
|
|
733
734
|
ansible/plugins/test/same_file.yml,sha256=ZXqAMsdWZntg4GldSEQzLrtsibx0V5Q-PxOEP0PpsSY,737
|
|
734
735
|
ansible/plugins/test/search.yml,sha256=tCZIHktzLWc3VqU9Wuv0Q-H8LCa6za9XYAGHKjPuTzY,924
|
|
735
736
|
ansible/plugins/test/skip.yml,sha256=Kf6Jw3oFkT_nRfuvKk3Wsf5t-GA6uUlXapl5gYWhDTs,623
|
|
@@ -741,7 +742,7 @@ ansible/plugins/test/success.yml,sha256=YCWf9SYePHlqhffTkKEVUOXWMMlYWDDVGdypw9gn
|
|
|
741
742
|
ansible/plugins/test/successful.yml,sha256=YCWf9SYePHlqhffTkKEVUOXWMMlYWDDVGdypw9gngjk,691
|
|
742
743
|
ansible/plugins/test/superset.yml,sha256=KcPyWv-MqREe_hgKdilPJjOJ1O7hGgHLLZEfvEg1Cd8,714
|
|
743
744
|
ansible/plugins/test/timedout.yml,sha256=w-QWRd_nJqY9oE4ypd6Eyi4oc12ngIDZJBICBvWossU,594
|
|
744
|
-
ansible/plugins/test/truthy.yml,sha256=
|
|
745
|
+
ansible/plugins/test/truthy.yml,sha256=sSGai78h38UtaHd21WiqdhbKb4XmuzijviMJSvu5KD4,806
|
|
745
746
|
ansible/plugins/test/unreachable.yml,sha256=KCrtQULh4YZ3iOZiE0-_SGCCpqnjIDf3n5Go5w5d58k,695
|
|
746
747
|
ansible/plugins/test/uri.py,sha256=j1WZU7eCfNEu3m2udzVTP8nIbJ6TFsG3DmO62FIosM4,965
|
|
747
748
|
ansible/plugins/test/uri.yml,sha256=jqb-Ppm-uQfOh-XgTm6iW8dxW1s2NvFpHBsPBsWEMzM,1115
|
|
@@ -753,55 +754,54 @@ ansible/plugins/test/version.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3m
|
|
|
753
754
|
ansible/plugins/test/version_compare.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3ma38,3283
|
|
754
755
|
ansible/plugins/vars/__init__.py,sha256=D3YwVKABesBwag9e7GsLOxlRWqEO5NgfHDmYSq0z_1k,1331
|
|
755
756
|
ansible/plugins/vars/host_group_vars.py,sha256=II1322kBCCMbBtLL31AydKJ6pmjDZNr5ab6fI7rWNXU,5921
|
|
756
|
-
ansible/template/__init__.py,sha256=
|
|
757
|
+
ansible/template/__init__.py,sha256=LKTO7EF8-kqEicN293F6041EzfnX2Cby6jPFNck_6xk,17261
|
|
757
758
|
ansible/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
758
759
|
ansible/utils/_junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx2ERXwM,8671
|
|
759
760
|
ansible/utils/cmd_functions.py,sha256=VmGs5ntdVaaqAJHcCTpGG3rYAAcTNl1b2-Iw4YVOt9Y,2180
|
|
760
761
|
ansible/utils/color.py,sha256=LjJO_12OsJiavBxwSDVXtLxdTzdwd2YWUp1OJ6KcM2g,4057
|
|
761
|
-
ansible/utils/context_objects.py,sha256=
|
|
762
|
-
ansible/utils/display.py,sha256=
|
|
763
|
-
ansible/utils/encrypt.py,sha256=
|
|
762
|
+
ansible/utils/context_objects.py,sha256=QbzxqEKchYKCUKF0h--tcKvxbiH-LaSZRsladKi-Oz4,3130
|
|
763
|
+
ansible/utils/display.py,sha256=tmwmHHzd6Z7okP5Q-fs-mXlyU-8MY1fxy-9ByQ2Fv1M,43477
|
|
764
|
+
ansible/utils/encrypt.py,sha256=XuQcoX768T44VIFEED1U7-MVFdKU9-VpRkBQ0fMXq80,7423
|
|
764
765
|
ansible/utils/fqcn.py,sha256=_wPNWMkR0mqRdkr6fn9FRgEkaCQHw40yardWe97FfEc,1215
|
|
765
766
|
ansible/utils/galaxy.py,sha256=xdfYGrHAz0KJB2N0zvAFAx5ZXNldDZnA8F4L3to7Q40,3859
|
|
766
767
|
ansible/utils/hashing.py,sha256=u9nqsz_5KgeD0u01L3RdqqB6elvD_OOYEPjQZh6-ek0,2699
|
|
767
|
-
ansible/utils/helpers.py,sha256=
|
|
768
|
-
ansible/utils/jsonrpc.py,sha256=
|
|
768
|
+
ansible/utils/helpers.py,sha256=o3Z_mHdnmKCzWaX05vddJ5JRJatP3Oo5mhfBtnXMz6w,1859
|
|
769
|
+
ansible/utils/jsonrpc.py,sha256=3PSX5hkV2t810uxcj2hZfhlb3-dZuH766ttwe4_TqLA,3905
|
|
769
770
|
ansible/utils/listify.py,sha256=QCi-jvTaklqvHpK0CKuH_mhk5E91Lh-_UjmjGdqYunE,1545
|
|
770
771
|
ansible/utils/lock.py,sha256=aP6MfrvWHdO_V756hwFsJG1I9QaQyFJq9W0tf7pCN3I,1306
|
|
771
772
|
ansible/utils/multiprocessing.py,sha256=Xgs3kXqbzVujXah0-R_D6eUcQoiapbQ-0yclNpkAvs4,614
|
|
772
773
|
ansible/utils/path.py,sha256=6ePGGvpaiM00E-MztKQp0u0MsOqDv4sOrDPXXS4HdtY,5984
|
|
773
|
-
ansible/utils/plugin_docs.py,sha256=
|
|
774
|
-
ansible/utils/py3compat.py,sha256=l_cha1O6KPy8KvOfSa14bsSSJUqh3uvNJVdz_FFtgIw,637
|
|
774
|
+
ansible/utils/plugin_docs.py,sha256=1brh-7M7EtpmkdRuSANucEbkG-zCZsQEwGXSJgvGtfU,16119
|
|
775
775
|
ansible/utils/sentinel.py,sha256=3TBjBlaOB6NfoXt5MFLCHVQLbPIFx03N_glcN3cYdjo,323
|
|
776
776
|
ansible/utils/shlex.py,sha256=eUCZ0VkxMSEoyXCDspS9E4cI8pQWn83OFCt7sbVLB6g,841
|
|
777
777
|
ansible/utils/singleton.py,sha256=6nYKQz0zmslyaOvbzCSG0Eud1eIgsQiSPZ1DyY7tXtc,1024
|
|
778
|
-
ansible/utils/ssh_functions.py,sha256=
|
|
778
|
+
ansible/utils/ssh_functions.py,sha256=J29lPiu8-lGGzUg_SVxJkQM5Bf9zBzkVnWIKNxLHJsU,1621
|
|
779
779
|
ansible/utils/unicode.py,sha256=__zbdElrMS9Rrqo9H7tF8zkjKFQCFU8kTtj5cVIITxM,1100
|
|
780
|
-
ansible/utils/unsafe_proxy.py,sha256=
|
|
780
|
+
ansible/utils/unsafe_proxy.py,sha256=uw7DhWlaFHtctMyJK88IRAkBETRYPu4h3n2_X9zGNLY,2166
|
|
781
781
|
ansible/utils/vars.py,sha256=zBE8lhOBJBZVZRKF-xNAnGYAsa2_m7XYXu12JhEaHGI,11712
|
|
782
782
|
ansible/utils/version.py,sha256=TKmSzm_MFZVJWpvmOnIEGZzRfeHLwWmeuHj16zGqb2c,7736
|
|
783
783
|
ansible/utils/collection_loader/__init__.py,sha256=lwLu1LJhWz3cRzFLfNWuFdS-Rhods6aReqOaqoVaDaM,2564
|
|
784
|
-
ansible/utils/collection_loader/_collection_config.py,sha256=
|
|
785
|
-
ansible/utils/collection_loader/_collection_finder.py,sha256=
|
|
784
|
+
ansible/utils/collection_loader/_collection_config.py,sha256=_dL54oVCHIEICTrJ8Mc53siMUThYtUehuzBq1HHC4O8,3141
|
|
785
|
+
ansible/utils/collection_loader/_collection_finder.py,sha256=CntjTjw88iSTRGBwnLbZoK1ebVuQbup1Cc5hrcXM9Ss,55019
|
|
786
786
|
ansible/utils/collection_loader/_collection_meta.py,sha256=p2eZArsO8RCl4PlN1x2I-7A7Q8HZpdFoeqfMNVaRgiU,1815
|
|
787
787
|
ansible/vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
788
|
-
ansible/vars/clean.py,sha256=
|
|
788
|
+
ansible/vars/clean.py,sha256=5YwNY0ERBr29vQsdncjKSesLwB_Ku7SNk46edkiCXsM,5959
|
|
789
789
|
ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
|
|
790
|
-
ansible/vars/manager.py,sha256=
|
|
791
|
-
ansible/vars/plugins.py,sha256=
|
|
790
|
+
ansible/vars/manager.py,sha256=bsh_Ie5qSPxySkpxtz37n3uXaPcC4bDbDHN8tcSf4xo,28306
|
|
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.
|
|
794
|
-
ansible_core-2.
|
|
795
|
-
ansible_core-2.
|
|
796
|
-
ansible_core-2.
|
|
797
|
-
ansible_core-2.
|
|
798
|
-
ansible_core-2.
|
|
793
|
+
ansible_core-2.20.0.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
794
|
+
ansible_core-2.20.0.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
|
795
|
+
ansible_core-2.20.0.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
|
|
796
|
+
ansible_core-2.20.0.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
|
|
797
|
+
ansible_core-2.20.0.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
|
798
|
+
ansible_core-2.20.0.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=
|
|
803
|
-
ansible_test/_data/completion/network.txt,sha256=
|
|
804
|
-
ansible_test/_data/completion/remote.txt,sha256=
|
|
802
|
+
ansible_test/_data/completion/docker.txt,sha256=HQNcpTK60cMHSE47Ns7xo2v54YTaiNHB4RCHUxljBSo,685
|
|
803
|
+
ansible_test/_data/completion/network.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
804
|
+
ansible_test/_data/completion/remote.txt,sha256=GQWNAYsNp1KaHSHvWnWDMmQe5eLe_ZsHgls39rRaofw,972
|
|
805
805
|
ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
|
|
806
806
|
ansible_test/_data/playbooks/posix_coverage_setup.yml,sha256=PgQNVzVTsNmfnu0sT2SAYiWtkMSOppfmh0oVmAsb7TQ,594
|
|
807
807
|
ansible_test/_data/playbooks/posix_coverage_teardown.yml,sha256=xHci5QllwJymFtig-hsOXm-Wdrxz063JH14aIyRXhyc,212
|
|
@@ -816,57 +816,56 @@ ansible_test/_data/playbooks/windows_hosts_prepare.yml,sha256=8pGvZKnoRmH6UbXhB0
|
|
|
816
816
|
ansible_test/_data/playbooks/windows_hosts_restore.ps1,sha256=uFtxU7p2fIDt0uEEGWjM5LrpoqHvfmhAVs-zlXIcJBk,912
|
|
817
817
|
ansible_test/_data/playbooks/windows_hosts_restore.yml,sha256=fVSgEeJeNgeVAqlKw7DLTZwVLA96WUqDhSrOD1JDPpc,252
|
|
818
818
|
ansible_test/_data/pytest/config/default.ini,sha256=3f5D0MA9l2RafBBriLaG2eH3ePHPLb43NpN7wZPB_u4,151
|
|
819
|
-
ansible_test/_data/
|
|
820
|
-
ansible_test/_data/requirements/ansible
|
|
821
|
-
ansible_test/_data/requirements/ansible.txt,sha256=YC7zdpWV7J-L78x1dQi_BdZwY9zPx870ckRkcn7aQtY,884
|
|
819
|
+
ansible_test/_data/requirements/ansible-test.txt,sha256=rT-saza7U9c_cIOOB2R9YrOsp3HaL3lTpCnQdpYkWVE,189
|
|
820
|
+
ansible_test/_data/requirements/ansible.txt,sha256=8dBKRR1Sg1I3ZH0CGbOb7m8PKC5od36YCQeYjT0o2F0,884
|
|
822
821
|
ansible_test/_data/requirements/constraints.txt,sha256=vPTuYu3DeJoE3q9bPj5l3mGef8m0vWyyVgZ8QRuWJ2g,819
|
|
823
822
|
ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
|
|
824
|
-
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=
|
|
823
|
+
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=e7k83oJFMpemCzmTynyvqIPxJmoiAJmay8x8IXecbUg,169
|
|
825
824
|
ansible_test/_data/requirements/sanity.changelog.in,sha256=A0-S4lrfGxwfnbBNyA8IZ2slFrmHB70MZYVIQo6ogZE,135
|
|
826
|
-
ansible_test/_data/requirements/sanity.changelog.txt,sha256=
|
|
825
|
+
ansible_test/_data/requirements/sanity.changelog.txt,sha256=8Mp9gEED7Dlz3cB_EYtzJP2JfEiBClbJbvilGrbtl7Y,268
|
|
827
826
|
ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
|
|
828
827
|
ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
|
|
829
|
-
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=
|
|
830
|
-
ansible_test/_data/requirements/sanity.import.txt,sha256=
|
|
828
|
+
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=TfrAuUkb0LkhvUFcFKnuq14spEjpH3JKFDVRLZnQp7s,157
|
|
829
|
+
ansible_test/_data/requirements/sanity.import.txt,sha256=JPdDscrO6-UTD_50670DoEuzRylp3fHU7ZFtXAdC7tg,111
|
|
831
830
|
ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
|
|
832
|
-
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=
|
|
831
|
+
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=zT22L80tsUtRw-PCDX14hJI7lIxEymofGgCd6cYctQY,137
|
|
833
832
|
ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
|
|
834
|
-
ansible_test/_data/requirements/sanity.pep8.txt,sha256=
|
|
833
|
+
ansible_test/_data/requirements/sanity.pep8.txt,sha256=V8RHO5D99G-DfgqfnSIGhLI3mlQHbmQIu8Lonijbra8,113
|
|
835
834
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
|
|
836
835
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
|
|
837
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
|
836
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=G36wn5PJStr-t3srx_p73Di1XbIi5C5WOtn3LWcXCq8,215
|
|
838
837
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
|
839
|
-
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=
|
|
838
|
+
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=bNL2B-Y8kLGx81OxnqPRFn0DiGKrclW_OS2oAyRHDnU,150
|
|
840
839
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
|
|
841
|
-
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=
|
|
840
|
+
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=_N5-AZ3LDJSLFZ4fqfRS4Od8C5l7O_wD8pF6ke-YaLY,211
|
|
842
841
|
ansible_test/_data/requirements/sanity.yamllint.in,sha256=qtd2lDJ0A39NOP8OpnLX9Rdf_dn_89jh2XCjmmvTgHs,16
|
|
843
|
-
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=
|
|
842
|
+
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=NJ9HFfOasBSkxqGcnnOfQkoI27ssx6JGBx4BKDHyiXA,149
|
|
844
843
|
ansible_test/_data/requirements/units.txt,sha256=C6f8bZXbZCzpryYQiqlbX6fp_mrLBo3OiNh9025pBxE,228
|
|
845
844
|
ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
|
|
846
845
|
ansible_test/_internal/__init__.py,sha256=-CjkMsavBRDGpgI3VLhvQoStH6DOct1_2SULu1L3bMY,3246
|
|
847
846
|
ansible_test/_internal/ansible_util.py,sha256=K-ELVmAYAExldW-yhjXYI6r4Sp_rDTuqscv1YHEkQf8,11755
|
|
848
847
|
ansible_test/_internal/become.py,sha256=XoGFDH4Utb90aMFYcztcxswUzxMEIIRXqwbuvZPFDXI,3072
|
|
849
848
|
ansible_test/_internal/bootstrap.py,sha256=fIy75HWHXqVI2JNlL4vA_BEkTX5-nkACocit1cIG8-4,2534
|
|
850
|
-
ansible_test/_internal/cache.py,sha256=
|
|
849
|
+
ansible_test/_internal/cache.py,sha256=HiqOqxn1V26hZcVo6QsXyffZeCk7ODEr6-b8SfCFoJo,1018
|
|
851
850
|
ansible_test/_internal/cgroup.py,sha256=Lducww0ne5BUkf4rPIEXh-MzyWxOQWbjC3rK3tyOM5A,3917
|
|
852
|
-
ansible_test/_internal/completion.py,sha256=
|
|
853
|
-
ansible_test/_internal/config.py,sha256=
|
|
851
|
+
ansible_test/_internal/completion.py,sha256=9hWc_FX2RJLPQvZuipE7sHlIZ3ByAJYAKkaps98Ord4,11050
|
|
852
|
+
ansible_test/_internal/config.py,sha256=VCLaz2y2cyBSCpJiKBEQ8GVPy3xKc06eCY-786sPk6w,12366
|
|
854
853
|
ansible_test/_internal/connections.py,sha256=_wKp7ercAJlJxuB6nXGChqdIC2PGQRuwg8gpXNfg7Xk,7856
|
|
855
854
|
ansible_test/_internal/constants.py,sha256=qgVmng71FWdsIZXgUaQUEZfB9V0GC4jjhYbSp4pzA_M,1970
|
|
856
855
|
ansible_test/_internal/containers.py,sha256=iOqs3Bi9127cl7h7kIPw-mo3tbM-7JAkmOwB-9ESvRE,34138
|
|
857
856
|
ansible_test/_internal/content_config.py,sha256=qbYoSKOBT-X7FhSCuVkYzgiIz5H4MIbua3DxcN-gYdA,5589
|
|
858
857
|
ansible_test/_internal/core_ci.py,sha256=GSRt726aNL167p3LWLWum36EFhYhOaRvJGOjzHi7J1g,17977
|
|
859
|
-
ansible_test/_internal/coverage_util.py,sha256=
|
|
858
|
+
ansible_test/_internal/coverage_util.py,sha256=8k9o6QqFufwK-NU504yhS7O94RMG_zKHdsmQsFXy3tg,9409
|
|
860
859
|
ansible_test/_internal/data.py,sha256=8APH-Bm6CeFO9ngWgZC8IxHeFzlxn0OQd6D5G1msSZU,11185
|
|
861
860
|
ansible_test/_internal/debugging.py,sha256=bL2mT7AHiKGSmZp2lZVDWDpkeMdOg3HgCZW1m1qTaYc,15563
|
|
862
|
-
ansible_test/_internal/delegation.py,sha256=
|
|
861
|
+
ansible_test/_internal/delegation.py,sha256=EuISNM4weGSRM4WYf7SBvNmLIBWd9mW3bbE8LbiSi-M,13684
|
|
863
862
|
ansible_test/_internal/diff.py,sha256=uzgf3ckU9kj3-pIsX_EXVVfFT7HqK8wDd6gE5JiCFlE,7311
|
|
864
|
-
ansible_test/_internal/docker_util.py,sha256=
|
|
863
|
+
ansible_test/_internal/docker_util.py,sha256=LyqaHxOWekKiQs2Q-rH41V7RZDLeQtN0kK-czq6qw0s,38322
|
|
865
864
|
ansible_test/_internal/encoding.py,sha256=ymPqkmgg7mXUkW6MOARx0cYanX9TLLnu_NXp6n3Ujus,1380
|
|
866
865
|
ansible_test/_internal/executor.py,sha256=-SSTYgKckI-dWltBWt67zTU6zO7NVu_O3pgFiJG4DeQ,2960
|
|
867
866
|
ansible_test/_internal/git.py,sha256=TkYoTZ8CKWlP8dZZmThzzT1myItdP7_LseZ_2BMnIMA,4367
|
|
868
867
|
ansible_test/_internal/host_configs.py,sha256=fuY7CAhM8Ky3cPcVhHe28Kwzuokzyg9lvr7GVL3o2Bo,18635
|
|
869
|
-
ansible_test/_internal/host_profiles.py,sha256=
|
|
868
|
+
ansible_test/_internal/host_profiles.py,sha256=ONRG70t7MjClOctN84fW2VG_sQJ9zWLDjyGB93qDFMs,74290
|
|
870
869
|
ansible_test/_internal/http.py,sha256=P_C5n8hSZ3Q1zA08smmJCh2LvOoaflGasEqnLXZP0L0,3865
|
|
871
870
|
ansible_test/_internal/init.py,sha256=-OdOvJ3Fz4Sx2aTG9qq7ekKsbVVTqOvRqetOqjOvA6w,506
|
|
872
871
|
ansible_test/_internal/inventory.py,sha256=8Ajk67x5a8zt1bgvT8IrR9kCuEXXfkMxO2_ioFtlgh4,7074
|
|
@@ -876,15 +875,15 @@ ansible_test/_internal/locale_util.py,sha256=tjRbwKmgMQc1ysIhvP8yBhFcNA-2UCaWfQB
|
|
|
876
875
|
ansible_test/_internal/metadata.py,sha256=HWM-sQT-ovt2lwTSK1xN8-IYHWrB5joVY4BRh7HHHC0,7036
|
|
877
876
|
ansible_test/_internal/payload.py,sha256=F9sLPiTw-zNq0-zU-L_RIYOsXZmA3nsLWha2W2MoeEs,8013
|
|
878
877
|
ansible_test/_internal/processes.py,sha256=H3n7jOGzvWdeTxsTWFx4TPIjSpt40g0T6j0wvYdOsWY,2231
|
|
879
|
-
ansible_test/_internal/provisioning.py,sha256
|
|
880
|
-
ansible_test/_internal/pypi_proxy.py,sha256=
|
|
881
|
-
ansible_test/_internal/python_requirements.py,sha256=
|
|
878
|
+
ansible_test/_internal/provisioning.py,sha256=-6QTp-xjj7aOst_tSN2r4O8WS6BvnLQEPikn0vaR58E,7508
|
|
879
|
+
ansible_test/_internal/pypi_proxy.py,sha256=gVwaWvg8MWilSgHDYMcO0EAoXCKEg5Pqh44okgMseVk,6020
|
|
880
|
+
ansible_test/_internal/python_requirements.py,sha256=1kEeBKOzQcvv78hLlak8m_t1zGLteOVEHfeJaP7r9y4,16038
|
|
882
881
|
ansible_test/_internal/ssh.py,sha256=7gTyNiwszPwFSM4aYT4YtAWfAR4lYLnOi7dpnv0SqwA,10635
|
|
883
|
-
ansible_test/_internal/target.py,sha256=
|
|
882
|
+
ansible_test/_internal/target.py,sha256=XohjuOAMondCYLYR1ueXvWBpVV3MIbJ0nmd8eY5lfSo,25569
|
|
884
883
|
ansible_test/_internal/test.py,sha256=q17SmItAsiBWrSilDBZFSEBugv9QNsG5HzFOAFXcyh4,14516
|
|
885
|
-
ansible_test/_internal/thread.py,sha256=
|
|
884
|
+
ansible_test/_internal/thread.py,sha256=UbeTCkHk3XD2vxzP5xyl0wwbdQVa4uWi7UjZ40gNXo0,2601
|
|
886
885
|
ansible_test/_internal/timeout.py,sha256=KOYPTjgsAX4N2q-4Qn5vFpCWJWBT9YtQCpsU7ZIBvro,4073
|
|
887
|
-
ansible_test/_internal/util.py,sha256=
|
|
886
|
+
ansible_test/_internal/util.py,sha256=wBN_uEzUK1CdKveXY3kac4yIR_LSb86ygaJFzgpq7R8,39561
|
|
888
887
|
ansible_test/_internal/util_common.py,sha256=sw8ySIrPKCTK4AH8naulDXPU7kabSHD2EJMMhQ5G1o8,17814
|
|
889
888
|
ansible_test/_internal/venv.py,sha256=eb5RfjapntulFMTIQieyx8QdHo2LJfjgZY_wx3_htMw,5522
|
|
890
889
|
ansible_test/_internal/ci/__init__.py,sha256=wNgXvmq517FQPVQIW5HeUuuFBNjBAshcNoPEO8I6jDQ,4684
|
|
@@ -897,7 +896,7 @@ ansible_test/_internal/classification/powershell.py,sha256=3X975RdmVgrwMPMRe-gMW
|
|
|
897
896
|
ansible_test/_internal/classification/python.py,sha256=F5xwvxjZ7PH3t9B69e83HmpV-ZSO9ZNn6vRyYQ7Llqo,13886
|
|
898
897
|
ansible_test/_internal/cli/__init__.py,sha256=YtWslQ7anRNS5RiNCsN3qFgmYMYe-642Ybc26VBhOPo,1428
|
|
899
898
|
ansible_test/_internal/cli/actions.py,sha256=k9HpNGkqd1DLwghs0NJcwcFYAulaZZ6NwAEBsOyzMYU,3367
|
|
900
|
-
ansible_test/_internal/cli/compat.py,sha256=
|
|
899
|
+
ansible_test/_internal/cli/compat.py,sha256=u2W-_sg2EuqZuNv20Xc-PDdaGNL21G75wCLd3Xz9Whs,23154
|
|
901
900
|
ansible_test/_internal/cli/completers.py,sha256=eq-XJ7mJC4rsKklmw45bImbnc1B-SiQbGF0wEQC7mbg,1105
|
|
902
901
|
ansible_test/_internal/cli/converters.py,sha256=L2jjg7fVSDWOm8kzqtPs7oz3vfVkSATU2qXdIP1CrTE,573
|
|
903
902
|
ansible_test/_internal/cli/environments.py,sha256=FSprrbXUNFcihEmQJIwRsbX7sk4CFWYdJGvGqg6ufIA,21511
|
|
@@ -936,7 +935,7 @@ ansible_test/_internal/cli/parsers/key_value_parsers.py,sha256=oIecLu7Pz35qEHWpn
|
|
|
936
935
|
ansible_test/_internal/cli/parsers/value_parsers.py,sha256=YAdGqRGwJVYjM4vylxYEWG7Q-xtVDyggXDUBL0PxYik,6061
|
|
937
936
|
ansible_test/_internal/commands/__init__.py,sha256=YHcINH9sH7EXE0TBSm_O6Z1TRwiSr2xmnBRqP5Wlpik,89
|
|
938
937
|
ansible_test/_internal/commands/coverage/__init__.py,sha256=YR1wTj4uQyB0slJVEVwDjhNB-JF0Yh5YXilLq-RYcIc,14440
|
|
939
|
-
ansible_test/_internal/commands/coverage/combine.py,sha256=
|
|
938
|
+
ansible_test/_internal/commands/coverage/combine.py,sha256=ws8xfIpfpj8nz9YcaIMvT1wGA0GfbNpLnuX8rhgOlrw,11935
|
|
940
939
|
ansible_test/_internal/commands/coverage/erase.py,sha256=FWdaZjzZQd6h0wTTGZ-wGot7NnQn_A1D-KLIEXvzSWw,916
|
|
941
940
|
ansible_test/_internal/commands/coverage/html.py,sha256=R8PA-OlPBDzBx6p4FeR8LTmbO1P7r3DITbPqo2Vk2dg,1320
|
|
942
941
|
ansible_test/_internal/commands/coverage/report.py,sha256=5kXcgLCnM44Yqq4gtOd_hHUnH9DXJsLHArTY2IvU_vY,4869
|
|
@@ -949,9 +948,9 @@ ansible_test/_internal/commands/coverage/analyze/targets/filter.py,sha256=vQBd6a
|
|
|
949
948
|
ansible_test/_internal/commands/coverage/analyze/targets/generate.py,sha256=aEkUS13gOyVwMTev45BR4qHPZFOM1a_0FeGBWgZvoFA,4973
|
|
950
949
|
ansible_test/_internal/commands/coverage/analyze/targets/missing.py,sha256=c4V8IDd1U3sTi5-I4wYGeDPimMGXdHz-B0iPgiZLyKc,3895
|
|
951
950
|
ansible_test/_internal/commands/env/__init__.py,sha256=UDLcBD9dqvP52HCVVcBzwnZXAinGspkBsGbk5O4VIts,5167
|
|
952
|
-
ansible_test/_internal/commands/integration/__init__.py,sha256=
|
|
953
|
-
ansible_test/_internal/commands/integration/coverage.py,sha256=
|
|
954
|
-
ansible_test/_internal/commands/integration/filters.py,sha256=
|
|
951
|
+
ansible_test/_internal/commands/integration/__init__.py,sha256=NniKR6Vv_jwwzFEYvBlvZDUeJppnEMH2bIbVNnqayYM,37446
|
|
952
|
+
ansible_test/_internal/commands/integration/coverage.py,sha256=PZv_QWm3EdQO8G8_VHxjnwLXJRAfeZEMpjke0w9uyks,15601
|
|
953
|
+
ansible_test/_internal/commands/integration/filters.py,sha256=I_iQ5fdRMylsnmFyAA580SoiBzAUvvjELSQ-ABF6DSg,12039
|
|
955
954
|
ansible_test/_internal/commands/integration/network.py,sha256=Wdd-LV5AxfrxkLuhZHL3vrLz8be0wM3LYywQD4OEMZo,2418
|
|
956
955
|
ansible_test/_internal/commands/integration/posix.py,sha256=SRKJfFMUl3nYiaETNRvRaOfgFrEtk2n9m8YJNN9JvnU,1445
|
|
957
956
|
ansible_test/_internal/commands/integration/windows.py,sha256=TjaMIeSC15FjiAFrcCCAejjuRm4u2KZPlLklFZI5fhs,2640
|
|
@@ -965,7 +964,7 @@ ansible_test/_internal/commands/integration/cloud/digitalocean.py,sha256=VQ116aX
|
|
|
965
964
|
ansible_test/_internal/commands/integration/cloud/galaxy.py,sha256=qa05hc7g5fAXDIp3hvfdmL4_GhZorey8lFnvJCcrkIE,6211
|
|
966
965
|
ansible_test/_internal/commands/integration/cloud/gcp.py,sha256=CD8IR4glkxob9QEm8Cd7_muhph_jNYbu58H6LWD9hzo,1591
|
|
967
966
|
ansible_test/_internal/commands/integration/cloud/hcloud.py,sha256=aJPF0XjwmGcxQbmCUp2RIZ5WNR6IkTs2IlwSA_SSL88,3007
|
|
968
|
-
ansible_test/_internal/commands/integration/cloud/httptester.py,sha256=
|
|
967
|
+
ansible_test/_internal/commands/integration/cloud/httptester.py,sha256=mi1WIGVutStFmLc4yz0qRzdxuMI3qH_vLB93bOyla2c,2513
|
|
969
968
|
ansible_test/_internal/commands/integration/cloud/nios.py,sha256=AlqoivnqVGFb5Mh_cjp45iER_2ysxVuk0fiUETKoMY0,2583
|
|
970
969
|
ansible_test/_internal/commands/integration/cloud/opennebula.py,sha256=QwUIS1-8Q4spNR-CM8MLWPey17g-D1StHDBwgi-GPWg,1808
|
|
971
970
|
ansible_test/_internal/commands/integration/cloud/openshift.py,sha256=TX5CwDWftfD0tuj8SlBoOAXtxHe_kqK8h2f_tHzlUE4,3225
|
|
@@ -981,18 +980,18 @@ ansible_test/_internal/commands/sanity/import.py,sha256=FIlRTYyTuNb4zXgpmnfQa8Fv
|
|
|
981
980
|
ansible_test/_internal/commands/sanity/integration_aliases.py,sha256=kTvC2r0tHhCu3YaMIAZlUjlfITYrBCl-gT06eo-F5MQ,16768
|
|
982
981
|
ansible_test/_internal/commands/sanity/pep8.py,sha256=PCGSymfPCUpX0Y966jV97mw3D6cpwPqPA5SwOUfEhkI,3126
|
|
983
982
|
ansible_test/_internal/commands/sanity/pslint.py,sha256=9k1zG_hdpTzq_6RN6RCH0TvWsIOXrJ9Gn_7OE_hWKfU,3211
|
|
984
|
-
ansible_test/_internal/commands/sanity/pylint.py,sha256=
|
|
983
|
+
ansible_test/_internal/commands/sanity/pylint.py,sha256=lUVBpZd0Y8MHLKWtAkUlyplQr2jbLiMf5Iz2QrRKfpY,12367
|
|
985
984
|
ansible_test/_internal/commands/sanity/shellcheck.py,sha256=ib4SFUmDjnLsnfa5PTwuh30_K8SB5CNC93_H7LKO82E,3071
|
|
986
|
-
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=
|
|
985
|
+
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=anCiZFFYwYgQ5gztNvCbPV3J0sunQ4dQxt2TjPIghuY,7920
|
|
987
986
|
ansible_test/_internal/commands/sanity/yamllint.py,sha256=B0PBgrT0bBIhvee6yM1qFWQupeQOGiV6_jmbIuVQ2_M,3424
|
|
988
987
|
ansible_test/_internal/commands/shell/__init__.py,sha256=5_mAVu8oDA9JSSE8vGZJR3sg0OaEd9BPeVs7xoPJJ1Q,6712
|
|
989
|
-
ansible_test/_internal/commands/units/__init__.py,sha256=
|
|
988
|
+
ansible_test/_internal/commands/units/__init__.py,sha256=CeOcMhEfO0hgBm68LeZoIhycK_tYTtzOP8xaLhnkyJk,11839
|
|
990
989
|
ansible_test/_internal/compat/__init__.py,sha256=YHcINH9sH7EXE0TBSm_O6Z1TRwiSr2xmnBRqP5Wlpik,89
|
|
991
|
-
ansible_test/_internal/compat/packaging.py,sha256=
|
|
992
|
-
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
|
|
993
992
|
ansible_test/_internal/dev/__init__.py,sha256=NPM0p0CIFmNCq8Lc9HFBb5HhBxHivXT3YWap80xtSlA,139
|
|
994
993
|
ansible_test/_internal/dev/container_probe.py,sha256=Cti6uoU81h7QvbILhAo9L7RV2wNXiZDvpF8gyNOAddo,7820
|
|
995
|
-
ansible_test/_internal/provider/__init__.py,sha256=
|
|
994
|
+
ansible_test/_internal/provider/__init__.py,sha256=xCOhN6XKfGzvIYfeUNaB3r1-50orIgq9BzsWQ1PL1AA,2240
|
|
996
995
|
ansible_test/_internal/provider/layout/__init__.py,sha256=ud_r0dGGidKEh4f5y-TXdcGmIIe5apZL7uybBI0zhgE,7602
|
|
997
996
|
ansible_test/_internal/provider/layout/ansible.py,sha256=jfmqGUnFAMIAWiF77JX5Ig5LAzEeNCssXr3EfZpzbiM,1980
|
|
998
997
|
ansible_test/_internal/provider/layout/collection.py,sha256=5TWz5Q4FDCLFh58RKmrpgvXe_NQeOPEbXXFexGdY5lg,6131
|
|
@@ -1022,7 +1021,7 @@ ansible_test/_util/controller/sanity/code-smell/no-smart-quotes.py,sha256=gj3-P7
|
|
|
1022
1021
|
ansible_test/_util/controller/sanity/code-smell/replace-urlopen.json,sha256=w9--s9c-2F26o7JBJbTJjVGPnvlwGNfSu7KNDSmL9Qw,179
|
|
1023
1022
|
ansible_test/_util/controller/sanity/code-smell/replace-urlopen.py,sha256=mn17VZoiBVBQnRhb10V0r6yM19vIJJlaBzzjcf98_5E,625
|
|
1024
1023
|
ansible_test/_util/controller/sanity/code-smell/runtime-metadata.json,sha256=H2E2-01YXLlSWjvLJT5Vtj3Gn4zB6xhPXsDJh4a7EH0,225
|
|
1025
|
-
ansible_test/_util/controller/sanity/code-smell/runtime-metadata.py,sha256=
|
|
1024
|
+
ansible_test/_util/controller/sanity/code-smell/runtime-metadata.py,sha256=hPzHTdbWvtCIXMwe98SLLtQY7lj0RElD0wV4IiQTy4E,12772
|
|
1026
1025
|
ansible_test/_util/controller/sanity/code-smell/shebang.json,sha256=3vtNzoowM53gi2KZi9peIKVIU79ulQY3FE0jYcSP77M,63
|
|
1027
1026
|
ansible_test/_util/controller/sanity/code-smell/shebang.py,sha256=RSkhrq5IwuCliPTp-Sk_wAIDASpsYzqoUxKQvUGK1GQ,4673
|
|
1028
1027
|
ansible_test/_util/controller/sanity/code-smell/symlinks.json,sha256=JkalgX52aKGUKqjKG5P-68F0tXmUMgldPrNAknMN2Fk,96
|
|
@@ -1041,19 +1040,19 @@ ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=ikwNi
|
|
|
1041
1040
|
ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=jJ1K5-7XP-SLu6cJaZjDSNrJt7SRxwLDhSBWotw9g5Y,2062
|
|
1042
1041
|
ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=MrPjqou7RMmSBmai8epIbSCLbYkZ0yyxFcadowXrPs8,4789
|
|
1043
1042
|
ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=PHGUd-3F3tkj-Ie8HPFlF2kg3R9F5z92Ric9icrLJs0,4363
|
|
1044
|
-
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=
|
|
1043
|
+
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=haMAhd90Mzkdi6uPZidJ9G3-IfZIRPJFBOs0K0by83w,22242
|
|
1045
1044
|
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
|
|
1046
1045
|
ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
|
|
1047
|
-
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=
|
|
1048
|
-
ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py,sha256=
|
|
1046
|
+
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=rAmIWvktm8F_E27EqRgdOK3P0l6iaZzfbQPhebANhVI,2453
|
|
1047
|
+
ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py,sha256=LRZaWMPPGlExB9gpMaSBuHgkCuTKC7GVZXHjWg11OMM,8604
|
|
1049
1048
|
ansible_test/_util/controller/sanity/shellcheck/exclude.txt,sha256=8U3ZTe1A1YRCXUB1AIAIgcd33ejBhzelBPkVdOJnhj8,21
|
|
1050
1049
|
ansible_test/_util/controller/sanity/validate-modules/validate.py,sha256=jpNOhA5qJ5LdlWlSOJoJyTUh9H1tepjcSYZXeHdhJRY,114
|
|
1051
1050
|
ansible_test/_util/controller/sanity/validate-modules/validate_modules/__init__.py,sha256=CRUAj-k-zJye4RAGZ8eR9HvP6weM6VKTwGmFYpI_0Bw,816
|
|
1052
|
-
ansible_test/_util/controller/sanity/validate-modules/validate_modules/main.py,sha256=
|
|
1053
|
-
ansible_test/_util/controller/sanity/validate-modules/validate_modules/module_args.py,sha256=
|
|
1051
|
+
ansible_test/_util/controller/sanity/validate-modules/validate_modules/main.py,sha256=fZpma3RCQw-I4ULIJn3Zk3L4rTUEddGASJHm71NXOdc,117858
|
|
1052
|
+
ansible_test/_util/controller/sanity/validate-modules/validate_modules/module_args.py,sha256=ZSdqtz9fiiGYe1x38WXX40guiu1iFv1ws34FXFh6Fio,6301
|
|
1054
1053
|
ansible_test/_util/controller/sanity/validate-modules/validate_modules/ps_argspec.ps1,sha256=wteIiuD7-UOEGkjdUArKqVVWBpa7A7FU_WwDuMtR2mY,4139
|
|
1055
|
-
ansible_test/_util/controller/sanity/validate-modules/validate_modules/schema.py,sha256=
|
|
1056
|
-
ansible_test/_util/controller/sanity/validate-modules/validate_modules/utils.py,sha256=
|
|
1054
|
+
ansible_test/_util/controller/sanity/validate-modules/validate_modules/schema.py,sha256=zjUlMJKFzPqP7CAJRsShDtX0ZCijcMMlfOEZi-Yi-yU,36024
|
|
1055
|
+
ansible_test/_util/controller/sanity/validate-modules/validate_modules/utils.py,sha256=E8ANti_g5l7p541zs8NaPnYaBUAUYusFtxmdZKO2dvE,7023
|
|
1057
1056
|
ansible_test/_util/controller/sanity/yamllint/yamllinter.py,sha256=JOL2aoGjnemId-qKlq-nvMiS9BXpYnr1X4gFTaEgFr4,10139
|
|
1058
1057
|
ansible_test/_util/controller/sanity/yamllint/config/default.yml,sha256=19ITqd_UW6PVgoxX0C_N65x2zp4L5zQ5xWJ0Y0p4BI4,534
|
|
1059
1058
|
ansible_test/_util/controller/sanity/yamllint/config/modules.yml,sha256=vMWvfB3VOvucCjTmZ4_acH3woCYTHPw44kwr6zxXNPo,396
|
|
@@ -1062,8 +1061,8 @@ ansible_test/_util/controller/tools/collection_detail.py,sha256=0kx29eZa4ATStQhf
|
|
|
1062
1061
|
ansible_test/_util/controller/tools/coverage_stub.ps1,sha256=WQ2hY4v7MWtMn-R5uUiCP9e1hmb-dgyVo6sS2cJjAJw,1139
|
|
1063
1062
|
ansible_test/_util/controller/tools/yaml_to_json.py,sha256=hYZfeqyMtz8NKvn0pFCgbc6cx0ur4GEGkjGjqXSh1cU,754
|
|
1064
1063
|
ansible_test/_util/target/__init__.py,sha256=ZBfUK2ZQPEhIvdxODwaiPYt8pfgzzlIUVCb1GBE5lc8,42
|
|
1065
|
-
ansible_test/_util/target/cli/ansible_test_cli_stub.py,sha256=
|
|
1066
|
-
ansible_test/_util/target/common/constants.py,sha256=
|
|
1064
|
+
ansible_test/_util/target/cli/ansible_test_cli_stub.py,sha256=KyKXkflkmluiPzqo1PqH5yRJl47CNc4DYrrthkVzJNY,1726
|
|
1065
|
+
ansible_test/_util/target/common/constants.py,sha256=3nBa5Mdd4_iRNHJJXwF8I0SSQF-c5YpL4smf0rm1lZQ,428
|
|
1067
1066
|
ansible_test/_util/target/injector/python.py,sha256=7sRMha8m_cyYO9pG0-9L-HRITp_aOb18Yw9mnBCM4ns,2740
|
|
1068
1067
|
ansible_test/_util/target/injector/virtualenv.sh,sha256=OhiPVykh_qhPMlcE4vozBF5ByDQOqEjRMuwmO1E90TQ,673
|
|
1069
1068
|
ansible_test/_util/target/pytest/plugins/ansible_forked.py,sha256=GHnI9_E8rfQu1jshBAosge2951ayA4iFTXPnnZRipas,3632
|
|
@@ -1071,7 +1070,7 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=6u
|
|
|
1071
1070
|
ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=n5ZrjY_feIK5auGcx21aYP03BQE6Ptu9RrXFAKAJcfE,1999
|
|
1072
1071
|
ansible_test/_util/target/sanity/compile/compile.py,sha256=w6FO6aI4wiVb4DYNchthqCOrjwWRFmcaEKdM6_s1Vug,1303
|
|
1073
1072
|
ansible_test/_util/target/sanity/import/importer.py,sha256=mwF8tFHR_m-jFpgPy-KEewOsoDiHD9u6dv8GbO6puFM,24699
|
|
1074
|
-
ansible_test/_util/target/setup/bootstrap.sh,sha256=
|
|
1073
|
+
ansible_test/_util/target/setup/bootstrap.sh,sha256=5Aao60ausRAUDUOdKBXyP0DxA3wZcN2tnGMg7rx-MbE,12344
|
|
1075
1074
|
ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
|
|
1076
1075
|
ansible_test/_util/target/setup/probe_cgroups.py,sha256=wloSlXxgaQeE9cdpc3Bw3BvE8LktkiE9vq_DpI-cGrY,660
|
|
1077
1076
|
ansible_test/_util/target/setup/quiet_pip.py,sha256=LiyNCcZpXfLlWOTDndOSeXLX5hk2ukCObOn9GbuxEic,1980
|
|
@@ -1092,8 +1091,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
|
|
|
1092
1091
|
ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
|
|
1093
1092
|
ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
|
|
1094
1093
|
ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
|
|
1095
|
-
ansible_core-2.
|
|
1096
|
-
ansible_core-2.
|
|
1097
|
-
ansible_core-2.
|
|
1098
|
-
ansible_core-2.
|
|
1099
|
-
ansible_core-2.
|
|
1094
|
+
ansible_core-2.20.0.dist-info/METADATA,sha256=DbGfjSs5CzzOEGMGFuMvwDaPo0xbfYn6J1CsoiyTnyc,7730
|
|
1095
|
+
ansible_core-2.20.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1096
|
+
ansible_core-2.20.0.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
|
1097
|
+
ansible_core-2.20.0.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
|
1098
|
+
ansible_core-2.20.0.dist-info/RECORD,,
|