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