ansible-core 2.19.0b3__py3-none-any.whl → 2.19.0b5__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.
- ansible/_internal/__init__.py +2 -2
- ansible/_internal/_collection_proxy.py +1 -1
- ansible/_internal/_errors/_alarm_timeout.py +66 -0
- ansible/_internal/_errors/_captured.py +25 -30
- ansible/_internal/_errors/_error_factory.py +89 -0
- ansible/_internal/_errors/_error_utils.py +240 -0
- ansible/_internal/_errors/_task_timeout.py +28 -0
- ansible/_internal/_event_formatting.py +127 -0
- ansible/_internal/_json/__init__.py +6 -6
- ansible/_internal/_json/_profiles/_cache_persistence.py +2 -0
- ansible/_internal/_json/_profiles/_inventory_legacy.py +1 -1
- ansible/_internal/_json/_profiles/_legacy.py +3 -11
- ansible/_internal/_ssh/__init__.py +0 -0
- ansible/_internal/_ssh/_agent_launch.py +91 -0
- ansible/{utils → _internal/_ssh}/_ssh_agent.py +55 -93
- ansible/_internal/_templating/__init__.py +5 -3
- ansible/_internal/_templating/_datatag.py +2 -1
- ansible/_internal/_templating/_engine.py +3 -4
- ansible/_internal/_templating/_jinja_bits.py +21 -16
- ansible/_internal/_templating/_jinja_common.py +18 -27
- ansible/_internal/_templating/_jinja_plugins.py +31 -3
- ansible/_internal/_templating/_lazy_containers.py +5 -5
- ansible/_internal/_templating/_transform.py +20 -19
- ansible/_internal/_templating/_utils.py +1 -1
- ansible/_internal/_testing.py +26 -0
- ansible/_internal/_yaml/_dumper.py +1 -1
- ansible/_internal/_yaml/_errors.py +7 -7
- ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py +1 -1
- ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py +1 -1
- ansible/cli/__init__.py +5 -82
- ansible/cli/arguments/option_helpers.py +8 -5
- ansible/cli/doc.py +84 -28
- ansible/cli/inventory.py +1 -1
- ansible/compat/importlib_resources.py +9 -12
- ansible/config/base.yml +27 -23
- ansible/config/manager.py +142 -101
- ansible/constants.py +1 -1
- ansible/errors/__init__.py +96 -49
- ansible/executor/module_common.py +8 -10
- ansible/executor/powershell/async_watchdog.ps1 +2 -2
- ansible/executor/powershell/async_wrapper.ps1 +3 -3
- ansible/executor/powershell/become_wrapper.ps1 +20 -2
- ansible/executor/powershell/bootstrap_wrapper.ps1 +28 -6
- ansible/executor/powershell/coverage_wrapper.ps1 +15 -6
- ansible/executor/powershell/exec_wrapper.ps1 +219 -6
- ansible/executor/powershell/module_manifest.py +52 -0
- ansible/executor/powershell/module_wrapper.ps1 +47 -21
- ansible/executor/powershell/powershell_expand_user.ps1 +20 -0
- ansible/executor/powershell/powershell_mkdtemp.ps1 +17 -0
- ansible/executor/process/worker.py +38 -113
- ansible/executor/task_executor.py +26 -61
- ansible/executor/task_result.py +2 -4
- ansible/galaxy/collection/__init__.py +1 -4
- ansible/inventory/manager.py +1 -0
- ansible/module_utils/_internal/__init__.py +0 -3
- ansible/module_utils/_internal/_ambient_context.py +3 -3
- ansible/module_utils/_internal/_ansiballz.py +4 -2
- ansible/module_utils/_internal/_datatag/__init__.py +20 -14
- ansible/module_utils/_internal/_datatag/_tags.py +2 -2
- ansible/module_utils/_internal/_deprecator.py +66 -48
- ansible/module_utils/_internal/_errors.py +88 -17
- ansible/module_utils/_internal/_event_utils.py +61 -0
- ansible/module_utils/_internal/_json/_profiles/__init__.py +21 -4
- ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py +2 -0
- ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py +2 -0
- ansible/module_utils/_internal/_json/_profiles/_tagless.py +3 -1
- ansible/module_utils/{common/messages.py → _internal/_messages.py} +28 -47
- ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py +1 -3
- ansible/module_utils/_internal/_plugin_info.py +1 -1
- ansible/module_utils/_internal/_stack.py +22 -0
- ansible/module_utils/_internal/_text_utils.py +6 -0
- ansible/module_utils/_internal/_traceback.py +11 -8
- ansible/module_utils/ansible_release.py +1 -1
- ansible/module_utils/basic.py +49 -15
- ansible/module_utils/common/arg_spec.py +2 -2
- ansible/module_utils/common/collections.py +6 -0
- ansible/module_utils/common/json.py +2 -2
- ansible/module_utils/common/text/converters.py +3 -3
- ansible/module_utils/common/validation.py +1 -1
- ansible/module_utils/common/warnings.py +80 -23
- ansible/module_utils/common/yaml.py +1 -1
- ansible/module_utils/datatag.py +5 -2
- ansible/module_utils/facts/system/distribution.py +16 -3
- ansible/module_utils/facts/virtual/linux.py +2 -2
- ansible/module_utils/parsing/convert_bool.py +6 -0
- ansible/module_utils/service.py +2 -9
- ansible/modules/apt_repository.py +7 -29
- ansible/modules/assemble.py +4 -4
- ansible/modules/async_status.py +13 -11
- ansible/modules/async_wrapper.py +5 -5
- ansible/modules/cron.py +3 -5
- ansible/modules/dnf5.py +15 -22
- ansible/modules/git.py +1 -6
- ansible/modules/hostname.py +0 -1
- ansible/modules/pip.py +2 -4
- ansible/modules/service.py +3 -9
- ansible/modules/sysvinit.py +3 -3
- ansible/parsing/ajson.py +3 -5
- ansible/parsing/dataloader.py +4 -4
- ansible/parsing/mod_args.py +1 -1
- ansible/parsing/plugin_docs.py +2 -2
- ansible/parsing/utils/yaml.py +3 -3
- ansible/parsing/vault/__init__.py +4 -4
- ansible/playbook/playbook_include.py +1 -1
- ansible/playbook/taggable.py +0 -3
- ansible/plugins/__init__.py +0 -25
- ansible/plugins/action/__init__.py +9 -32
- ansible/plugins/action/add_host.py +1 -1
- ansible/plugins/action/assemble.py +8 -16
- ansible/plugins/action/async_status.py +7 -2
- ansible/plugins/action/copy.py +8 -7
- ansible/plugins/action/gather_facts.py +8 -8
- ansible/plugins/action/package.py +5 -8
- ansible/plugins/action/script.py +8 -15
- ansible/plugins/action/service.py +3 -7
- ansible/plugins/action/template.py +6 -8
- ansible/plugins/action/unarchive.py +5 -15
- ansible/plugins/action/uri.py +9 -20
- ansible/plugins/callback/__init__.py +4 -6
- ansible/plugins/callback/junit.py +4 -2
- ansible/plugins/connection/local.py +2 -2
- ansible/plugins/connection/ssh.py +17 -9
- ansible/plugins/connection/winrm.py +5 -2
- ansible/plugins/doc_fragments/constructed.py +2 -2
- ansible/plugins/filter/core.py +13 -6
- ansible/plugins/filter/encryption.py +4 -4
- ansible/plugins/inventory/__init__.py +11 -10
- ansible/plugins/inventory/script.py +1 -1
- ansible/plugins/list.py +69 -16
- ansible/plugins/loader.py +10 -9
- ansible/plugins/lookup/csvfile.py +16 -71
- ansible/plugins/lookup/first_found.py +2 -1
- ansible/plugins/shell/__init__.py +56 -2
- ansible/plugins/shell/powershell.py +66 -9
- ansible/plugins/shell/sh.py +9 -5
- ansible/plugins/test/core.py +21 -15
- ansible/plugins/test/finished.yml +1 -1
- ansible/plugins/test/uri.py +2 -5
- ansible/release.py +1 -1
- ansible/template/__init__.py +30 -2
- ansible/utils/collection_loader/__init__.py +2 -0
- ansible/utils/display.py +107 -128
- ansible/utils/hashing.py +0 -1
- ansible/utils/listify.py +6 -4
- ansible/utils/plugin_docs.py +2 -1
- ansible/utils/unsafe_proxy.py +1 -1
- ansible/vars/hostvars.py +1 -1
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info}/METADATA +3 -2
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info}/RECORD +173 -161
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info}/WHEEL +1 -1
- ansible_test/_data/completion/docker.txt +3 -3
- ansible_test/_data/completion/remote.txt +1 -0
- ansible_test/_data/requirements/sanity.ansible-doc.txt +1 -1
- ansible_test/_data/requirements/sanity.changelog.txt +2 -2
- ansible_test/_data/requirements/sanity.pep8.txt +1 -1
- ansible_test/_data/requirements/sanity.pylint.txt +4 -4
- ansible_test/_data/requirements/sanity.yamllint.txt +1 -1
- ansible_test/_internal/util.py +20 -0
- ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg +1 -0
- ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg +1 -0
- ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg +1 -0
- ansible_test/_util/controller/sanity/pylint/config/collection.cfg +1 -0
- ansible_test/_util/controller/sanity/pylint/config/default.cfg +1 -0
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +73 -8
- ansible_test/_util/target/setup/bootstrap.sh +31 -0
- ansible/_internal/_errors/_utils.py +0 -310
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses}/COPYING +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses/licenses}/Apache-License.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses/licenses}/BSD-3-Clause.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses/licenses}/MIT-license.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses/licenses}/PSF-license.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info/licenses/licenses}/simplified_bsd.txt +0 -0
- {ansible_core-2.19.0b3.dist-info → ansible_core-2.19.0b5.dist-info}/top_level.txt +0 -0
@@ -1,49 +1,57 @@
|
|
1
1
|
ansible/__init__.py,sha256=lcN6K0RviF9nJ6bUtvmwp26GEEy7CzyYivFJ6JIsziA,1215
|
2
2
|
ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
|
3
|
-
ansible/constants.py,sha256=
|
3
|
+
ansible/constants.py,sha256=qef45QpHi-yFFMvllvNKmqFpXdKKr304e5fEZnjgwZc,7989
|
4
4
|
ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
|
5
5
|
ansible/keyword_desc.yml,sha256=5rGCsr-0B8w2D67qBD6q_2WFxfqj9ieb0V_2J-dZJ5E,7547
|
6
|
-
ansible/release.py,sha256=
|
7
|
-
ansible/_internal/__init__.py,sha256=
|
6
|
+
ansible/release.py,sha256=hCnTObVykt-Bk_pPXZ1_tZzVRLP76RqWQ-VAsw1veXs,854
|
7
|
+
ansible/_internal/__init__.py,sha256=J3yCEAZoJLwxHMPEIWHwX6seRTCQ4Sr7cfHSw11ik9k,2208
|
8
8
|
ansible/_internal/_ansiballz.py,sha256=OL2FCN0jOjg1a8diutsNcs_mr0dqO7SgJPmrYCKfo1Y,11649
|
9
|
-
ansible/_internal/_collection_proxy.py,sha256=
|
9
|
+
ansible/_internal/_collection_proxy.py,sha256=V3Zns3jdWR1hTP6q4mrNWoIKL67ayiQFPDOb6F7igsc,1228
|
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
|
13
|
+
ansible/_internal/_testing.py,sha256=WCEwZk8_NP2f2LoY2zjh6VIw6d8bPoFspvfP3-KQMjQ,825
|
12
14
|
ansible/_internal/_wrapt.py,sha256=CLgu2S5V4NmJ9pPFIKarhqiiwAQxni5ISgr-TxARWuE,37963
|
13
15
|
ansible/_internal/_datatag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
16
|
ansible/_internal/_datatag/_tags.py,sha256=8ZLQUX2ggTQluwtLfFbNKa9rKNpxRhqalRzeqSUda2Y,5180
|
15
17
|
ansible/_internal/_datatag/_utils.py,sha256=YCtUuzsEuu-m_WuDky8JKvbp432xJ7S-UJQPqeY5Ckk,782
|
16
18
|
ansible/_internal/_datatag/_wrappers.py,sha256=MNF_vK0Ib03U56T5W0sFbshV6RlV1gfuN6YhpVxVAIg,1137
|
17
19
|
ansible/_internal/_errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
ansible/_internal/_errors/
|
20
|
+
ansible/_internal/_errors/_alarm_timeout.py,sha256=2rPudAmEzDXAnXBZM2sBa7L3w0r3qriRchtomWrdv9w,2519
|
21
|
+
ansible/_internal/_errors/_captured.py,sha256=SLq0F5sHKlRpboo5JefBPFkGyPZkI2EFZycVyF5y1oA,4499
|
22
|
+
ansible/_internal/_errors/_error_factory.py,sha256=mu5V16XfB9KbrHyo6TfVWtXVkXNA8G5vg_IVzUNBY3c,3548
|
23
|
+
ansible/_internal/_errors/_error_utils.py,sha256=P8sWdmQxZ4UFJ1jfmRVgkdZ_xDYZ3nDNqIfZNK9yihY,9141
|
19
24
|
ansible/_internal/_errors/_handler.py,sha256=4ZX27G_jrDsomR28OVC0A9WRponpte5V-QGq5ZcDzeE,3455
|
20
|
-
ansible/_internal/_errors/
|
21
|
-
ansible/_internal/_json/__init__.py,sha256=
|
25
|
+
ansible/_internal/_errors/_task_timeout.py,sha256=CN5J2eKa42cyahXC0IMrliwQAF7DMwNvdaJmzSqPBsk,923
|
26
|
+
ansible/_internal/_json/__init__.py,sha256=X5QL0n8wbgR93jx3TPuQRd_MIfvzASO8ekzTmCRBqac,8796
|
22
27
|
ansible/_internal/_json/_legacy_encoder.py,sha256=clXiPnJ2aR5McuSbajugTPW2wav1wwklivxDKWZ1iFw,1646
|
23
28
|
ansible/_internal/_json/_profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=
|
25
|
-
ansible/_internal/_json/_profiles/_inventory_legacy.py,sha256=
|
26
|
-
ansible/_internal/_json/_profiles/_legacy.py,sha256=
|
29
|
+
ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=SVTQ59kZiO4YSVqewTz4qcfj-5iROcO5bJrE0DlHei0,1913
|
30
|
+
ansible/_internal/_json/_profiles/_inventory_legacy.py,sha256=UGPOuvu_x3Z1lAvkca36ZRX0v0D1j_FCZd28y5BK_jM,1083
|
31
|
+
ansible/_internal/_json/_profiles/_legacy.py,sha256=EepGJPeg-Q4o5pGuJkxGEod3Q_qd8zasNH1a1GRo35E,7555
|
27
32
|
ansible/_internal/_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
33
|
ansible/_internal/_plugins/_cache.py,sha256=jwVeVm-ZJJaNqdyq7aS4Zt41C6VKyRO_DdwXaVBXWGc,1989
|
29
|
-
ansible/_internal/
|
34
|
+
ansible/_internal/_ssh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
ansible/_internal/_ssh/_agent_launch.py,sha256=n3mBv3pPTz5zSUH3-YQIP6ImUKO6AV2tCLEp4SliGBE,3439
|
36
|
+
ansible/_internal/_ssh/_ssh_agent.py,sha256=lGATyCqYBK3JtYBzTwyPazRfXzpxaassVxfK6oGR1iE,20718
|
37
|
+
ansible/_internal/_templating/__init__.py,sha256=78wbU8DM2Wk7sfJqp72bmEJMs7hyQ5k-a-G9QMN6kzs,506
|
30
38
|
ansible/_internal/_templating/_access.py,sha256=dse4dr0TRpZdRbZLfg0VJ7wigNm2iS4DA-JEK6LoTLc,3467
|
31
39
|
ansible/_internal/_templating/_chain_templar.py,sha256=VArYtkVpa0mZY2AhSL_Re2McPxM_lcgZupcDNwb4wB8,2256
|
32
|
-
ansible/_internal/_templating/_datatag.py,sha256=
|
33
|
-
ansible/_internal/_templating/_engine.py,sha256=
|
40
|
+
ansible/_internal/_templating/_datatag.py,sha256=HuOaYtpmXYZkTDVVVz5lO3E6trowAIp80P2BN-UTyHs,3903
|
41
|
+
ansible/_internal/_templating/_engine.py,sha256=1-674lL9t4B0t93Ny0a9ZklU4bNkFefzNCAhNiFTOew,28155
|
34
42
|
ansible/_internal/_templating/_errors.py,sha256=3dxLGu1NLft-9GDuNKNc1K4OIDaduAzFYkNOYBNAYCI,1302
|
35
|
-
ansible/_internal/_templating/_jinja_bits.py,sha256=
|
36
|
-
ansible/_internal/_templating/_jinja_common.py,sha256=
|
43
|
+
ansible/_internal/_templating/_jinja_bits.py,sha256=v0V2V4a3CBRGNPIa2_hoot9LEziUmE919WzxFlrsd4w,47307
|
44
|
+
ansible/_internal/_templating/_jinja_common.py,sha256=wTTLtFmVDy5as1DK_94BmVUrvz46BhJDlICFy3qUMmY,11760
|
37
45
|
ansible/_internal/_templating/_jinja_patches.py,sha256=O_1GHYLEYtu1f2g0iSb3GDBrQMk1Qbh43H4CUEP9wcE,1412
|
38
|
-
ansible/_internal/_templating/_jinja_plugins.py,sha256=
|
39
|
-
ansible/_internal/_templating/_lazy_containers.py,sha256=
|
46
|
+
ansible/_internal/_templating/_jinja_plugins.py,sha256=oZCNkxoIYwb8l0ymc0BDL5xfTEE8IcH08kDA4xXQ-zw,16060
|
47
|
+
ansible/_internal/_templating/_lazy_containers.py,sha256=dq7jPLtHJ42mNarYmROc2GES3IFQB2X-eIxp6HQtj5M,27159
|
40
48
|
ansible/_internal/_templating/_marker_behaviors.py,sha256=EPQwotuBRagad5k9rGALlfCSV-CbNGXY6oA-DPp6dJ4,3439
|
41
|
-
ansible/_internal/_templating/_transform.py,sha256
|
42
|
-
ansible/_internal/_templating/_utils.py,sha256=
|
49
|
+
ansible/_internal/_templating/_transform.py,sha256=-_gYpMn9IFQiadtC7_hiWsydNaZo0oQi7K5D_OSrPX4,2589
|
50
|
+
ansible/_internal/_templating/_utils.py,sha256=7DYmkWZ4kInyeoLjLne9DR1LmOzDg_Dz0x3HkB6oxWE,3711
|
43
51
|
ansible/_internal/_yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
52
|
ansible/_internal/_yaml/_constructor.py,sha256=bTzjXIQBy60hpaRIMyVclxgVatyvFXd-xiYgJY_NkIU,9766
|
45
|
-
ansible/_internal/_yaml/_dumper.py,sha256=
|
46
|
-
ansible/_internal/_yaml/_errors.py,sha256=
|
53
|
+
ansible/_internal/_yaml/_dumper.py,sha256=9pDuDepqe1IwWpz7uG3u4K1fwpYHrL6RF_rejRyRpw8,2511
|
54
|
+
ansible/_internal/_yaml/_errors.py,sha256=qx0ViQbUdG9jnac3JOir2ZfT9B_-N7KJY-hZvPw9EHY,7797
|
47
55
|
ansible/_internal/_yaml/_loader.py,sha256=h6pGkmFV8cYLrQKJExL0FkVcGHXN2uoCMmJX2SgP078,2436
|
48
56
|
ansible/_internal/ansible_collections/ansible/_protomatter/README.md,sha256=IyejgfHj83nAH19YDcLC391EbcxRzGkVR-67-zkxnIA,612
|
49
57
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/action/debug.py,sha256=Hpdd8wDpE5N0UbqQbCZUVGFpyw01LDvmMG4R7uP27GQ,1469
|
@@ -54,8 +62,8 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/origin
|
|
54
62
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.py,sha256=jumCgi2BVy80WgAyHMuVGTIqINN11pt1S5bkUJsF-y8,552
|
55
63
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.yml,sha256=HEdQ0Piu587suBfaC0dpUaH9czCZOgRKFSeSW16Bg0Q,1445
|
56
64
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/tag_names.py,sha256=fhTrWdxio0xD9YSS_exlDC3eW7QGE2qj38GeS16VIeI,462
|
57
|
-
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py,sha256=
|
58
|
-
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py,sha256=
|
65
|
+
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py,sha256=tNuCQfdkYT3tnHo_iQ7HFJfxeng89XawPEhLvRxY7tQ,457
|
66
|
+
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py,sha256=yd3zHdxfg8RJ3YmKJ9lJOgTFOfpJzBuDNCdzodoMOKw,1745
|
59
67
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.py,sha256=wvulF1t5DoJixeuvx-Ba8xbUInKmDCBASqOU9xySHjU,818
|
60
68
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.yml,sha256=DVc0oFQdZ2go3tkszKhbSo535rDbP6inId6IOMtVdUU,30
|
61
69
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.py,sha256=Zt6et3ahLkJ6bmgLbBP7xFhTkavUuT-xfLhdKa6T-sc,319
|
@@ -63,61 +71,63 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.y
|
|
63
71
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.py,sha256=A6vLIuZMi05Hwzvnm6mZ2besNBIoOGxcby4aM2zcD8M,453
|
64
72
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.yml,sha256=sRbc5UjNAelH023-mXpQ9z_-17i36-7L_0ynKIRb3EM,520
|
65
73
|
ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
|
66
|
-
ansible/cli/__init__.py,sha256=
|
74
|
+
ansible/cli/__init__.py,sha256=dU4UazspgS25quhETe1JGaOmYifWAy1Mmjk6Iz-TdI4,27930
|
67
75
|
ansible/cli/_ssh_askpass.py,sha256=hzDkbYV82KZHWTjbGCHvnDB3hWeYdwoXt-6kFkrkPHg,1365
|
68
76
|
ansible/cli/adhoc.py,sha256=z1IyIKaYi3tc7BFhwUauPYEx7hZjM7N8K5M1xW83Q-0,8391
|
69
77
|
ansible/cli/config.py,sha256=PJ9hQPhPaX4OsJ3Y6B5KOII0b09RieAJRg7-jD3jg3A,28607
|
70
78
|
ansible/cli/console.py,sha256=jDb5rEDpRT1reDGZycXwobNN6hzGRFAPke6IHLd-5cM,22010
|
71
|
-
ansible/cli/doc.py,sha256=
|
79
|
+
ansible/cli/doc.py,sha256=Pf4WxX3_dehN2R0kbLcTIQTCQ6oo1XUEPJgfsSBGB0A,73283
|
72
80
|
ansible/cli/galaxy.py,sha256=ldWsmRxTCN-HXipw1TZvDRJjYLZDPwS_LYIKcEZabqE,95246
|
73
|
-
ansible/cli/inventory.py,sha256
|
81
|
+
ansible/cli/inventory.py,sha256=-41XSLhjMFQd8_dN-eUdTWS_VwxLFoeoZ1i-B3DRs9A,16286
|
74
82
|
ansible/cli/playbook.py,sha256=yPOYqwH5qcI6uCVI2k4GrSB0thWQLjlauJOD-sFx11I,10546
|
75
83
|
ansible/cli/pull.py,sha256=Bvc59o9KbLRlcKTCb_pzr-vcs2owDuThpQJlK05xYM8,18425
|
76
84
|
ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
|
77
85
|
ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
|
78
|
-
ansible/cli/arguments/option_helpers.py,sha256=
|
86
|
+
ansible/cli/arguments/option_helpers.py,sha256=KTaGlw09OFAj2xj2-5w73kPqrilL7G4JUJIPWR7uaNg,24455
|
79
87
|
ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
80
88
|
ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=Wz413NyoBudEJdQt6pw2UAB4IveHQma4XoHBzFSENt0,13122
|
81
89
|
ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
90
|
ansible/collections/list.py,sha256=PhQU6f7-bieg892uWnSg_8Cg4etbDnQUbR5a6SOnydk,2873
|
83
91
|
ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,1002
|
84
|
-
ansible/compat/importlib_resources.py,sha256=
|
92
|
+
ansible/compat/importlib_resources.py,sha256=75SJApiBzBKuBDknj81vdfzSJSxc2Pi4YvgQkmmGtew,542
|
85
93
|
ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
94
|
ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
|
87
|
-
ansible/config/base.yml,sha256=
|
88
|
-
ansible/config/manager.py,sha256=
|
89
|
-
ansible/errors/__init__.py,sha256=
|
95
|
+
ansible/config/base.yml,sha256=byxUIajh4eBwBV_lY2STLLT8RVbZ0zEDCjaD1nIS5WY,89554
|
96
|
+
ansible/config/manager.py,sha256=CC-JhhK4KN07rvXAfiex4sxjFSVtxsLx6E_YnpEOE88,31123
|
97
|
+
ansible/errors/__init__.py,sha256=J8s4UucIQEaaPuLQXsB-cdteRtjacBJE76N8eWV1d7M,16324
|
90
98
|
ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
91
99
|
ansible/executor/interpreter_discovery.py,sha256=UWeAxnHknJCci2gG3zt6edx5Nj4WbHYfJVcmW_DzItY,3858
|
92
|
-
ansible/executor/module_common.py,sha256=
|
100
|
+
ansible/executor/module_common.py,sha256=WGqJ6V_08Lbqodas0Zw-Oa9qfwDOicwhKSmhUmEeLiQ,59269
|
93
101
|
ansible/executor/play_iterator.py,sha256=OY0W7x3F7VUQCjWIogkPqhvm7SFnxOXR5anlqJjHeHY,32282
|
94
102
|
ansible/executor/playbook_executor.py,sha256=5wjvqw22RG4g_JlYDQnLFrUEa8aYQBWdgKhEpNonhKQ,14806
|
95
103
|
ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
|
96
|
-
ansible/executor/task_executor.py,sha256=
|
104
|
+
ansible/executor/task_executor.py,sha256=_gxdNInyouTOxJOTz3TR4x4DL0OJ19CG4X3SWEzJBKw,61234
|
97
105
|
ansible/executor/task_queue_manager.py,sha256=aOO0CLUx6zDHG8836NhNVvxf2aZBe-8RVpKtccWXHDs,20785
|
98
|
-
ansible/executor/task_result.py,sha256=
|
106
|
+
ansible/executor/task_result.py,sha256=o5WOFTezMKBFpehg6SIqsAEGHiY5YONHYNo-kqse1aU,10253
|
99
107
|
ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
108
|
ansible/executor/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
101
|
-
ansible/executor/powershell/async_watchdog.ps1,sha256=
|
102
|
-
ansible/executor/powershell/async_wrapper.ps1,sha256=
|
103
|
-
ansible/executor/powershell/become_wrapper.ps1,sha256=
|
104
|
-
ansible/executor/powershell/bootstrap_wrapper.ps1,sha256=
|
105
|
-
ansible/executor/powershell/coverage_wrapper.ps1,sha256=
|
106
|
-
ansible/executor/powershell/exec_wrapper.ps1,sha256=
|
107
|
-
ansible/executor/powershell/module_manifest.py,sha256=
|
108
|
-
ansible/executor/powershell/module_wrapper.ps1,sha256=
|
109
|
+
ansible/executor/powershell/async_watchdog.ps1,sha256=assMNPnHxYghXI1u_Ty7ioKwAC6Xu0MEzNzLDEiVTl0,3622
|
110
|
+
ansible/executor/powershell/async_wrapper.ps1,sha256=ad3dWEWj4ahH9yfvUvK4V7F5FzXwk2riAmWhPckTb-8,9112
|
111
|
+
ansible/executor/powershell/become_wrapper.ps1,sha256=z3L2RcabnwQhsEehU6NkRvGZSKVbdTTdDOMYPhr3y2Y,3864
|
112
|
+
ansible/executor/powershell/bootstrap_wrapper.ps1,sha256=11xDPllLkSRfYeSqcAAYu2DkmlKMSMDpwcRU2VwfEUs,1669
|
113
|
+
ansible/executor/powershell/coverage_wrapper.ps1,sha256=U06ON_TDYvUsrxEyIamttCaGwVcZGgPmNMnIUn6Zr7E,5024
|
114
|
+
ansible/executor/powershell/exec_wrapper.ps1,sha256=A_hiXBlQtccZbHZmXEzuYxg9JqKvEiiQsx9bHshvL-g,24782
|
115
|
+
ansible/executor/powershell/module_manifest.py,sha256=GbEWDVypSlHc24cW2XdWAHGX-nqwRC-TGfYKCZEVkro,22968
|
116
|
+
ansible/executor/powershell/module_wrapper.ps1,sha256=nHMsfUXPj7LF2JmQ1uM6ElLWymzxmlcp_Kl4ZB2u2AE,7306
|
117
|
+
ansible/executor/powershell/powershell_expand_user.ps1,sha256=yeaBvoRjUKiTOXWIDj3IYk0GxMNCupLzQnQZZhdOF3w,446
|
118
|
+
ansible/executor/powershell/powershell_mkdtemp.ps1,sha256=FKWKiiP5WloodSVK6EJb9JY-SQS07xUKmzqkPoA2YKk,393
|
109
119
|
ansible/executor/powershell/psrp_fetch_file.ps1,sha256=2735Mhr-3BWolq1JDr-wKQfM4cgdzm8QqVgh5DRIEkw,838
|
110
120
|
ansible/executor/powershell/psrp_put_file.ps1,sha256=D4cQrxpOTdjJXAh7DP3-J3AVZcUknGnxCz_XW5gtup0,3694
|
111
121
|
ansible/executor/powershell/winrm_fetch_file.ps1,sha256=wOgnMGFwNhq9c_-8kuGBNchGj69R0Udv-am39M3BEDw,979
|
112
122
|
ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVzxsS13ZwTXrx7krlgU,834
|
113
123
|
ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
114
|
-
ansible/executor/process/worker.py,sha256=
|
124
|
+
ansible/executor/process/worker.py,sha256=0-OwF8eW2e2RxM67GvX4hMpQWsW0inJ1Eaant_jygLk,9450
|
115
125
|
ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
|
116
126
|
ansible/galaxy/api.py,sha256=KGz_0HTScEJKXC9bInwPsGb-Bv3YSpUr2jWmGZLtDD0,40467
|
117
127
|
ansible/galaxy/role.py,sha256=QwOkaguThfzlThtrtFYCr7Tyoa4FBVL2R3n5jZinHNE,21036
|
118
128
|
ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
|
119
129
|
ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
|
120
|
-
ansible/galaxy/collection/__init__.py,sha256=
|
130
|
+
ansible/galaxy/collection/__init__.py,sha256=6HWPrLTYChrNKVk09sPRYLz850LaOdEl2W0iHnxbsF4,78866
|
121
131
|
ansible/galaxy/collection/concrete_artifact_manager.py,sha256=NpvbVoLI5nyEXaef2LwAqQjXCGa8HeMiBz2DY-vKyjQ,29367
|
122
132
|
ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
|
123
133
|
ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
|
@@ -195,71 +205,74 @@ ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,104
|
|
195
205
|
ansible/inventory/group.py,sha256=_4q692djOZmJjk2x2UQuS03lSst8zCucJnq9kVZ2uks,9351
|
196
206
|
ansible/inventory/helpers.py,sha256=8DaVEdMhIfan6Fy65AoHO3rILtl3mDzxei4_j8r4fp4,1556
|
197
207
|
ansible/inventory/host.py,sha256=Zzod7oWrsrCfv4v8oOu40ASEsrlk3IIZH4WtGs8rbU4,4654
|
198
|
-
ansible/inventory/manager.py,sha256=
|
208
|
+
ansible/inventory/manager.py,sha256=fxg2sq7s-VBJnn9TvJCgv-xvYIu0DLJTix_y3w0wLcc,31811
|
199
209
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
200
210
|
ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
|
201
|
-
ansible/module_utils/ansible_release.py,sha256=
|
211
|
+
ansible/module_utils/ansible_release.py,sha256=hCnTObVykt-Bk_pPXZ1_tZzVRLP76RqWQ-VAsw1veXs,854
|
202
212
|
ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
|
203
|
-
ansible/module_utils/basic.py,sha256=
|
213
|
+
ansible/module_utils/basic.py,sha256=bu_uo6WT3-ZHystMW2XoHyXru_Pk-YTxw0WzmRdqdqc,90671
|
204
214
|
ansible/module_utils/connection.py,sha256=EYcZ-JJ3GnCb8Hhdan2upLJfgfQGvzpPUHNY_qVXyKw,7675
|
205
|
-
ansible/module_utils/datatag.py,sha256=
|
215
|
+
ansible/module_utils/datatag.py,sha256=tEwBXm75G_Hrk7I0dj_B1htFmIFCGDB_ifO-3MPPSHs,1659
|
206
216
|
ansible/module_utils/errors.py,sha256=cOVAUZaQTeYaSGhKnYsT3L8vshayQHbCXzkT6HIVi_o,3345
|
207
217
|
ansible/module_utils/json_utils.py,sha256=DzkQvlXMD_clOPxRXv7rZwAwMAUii3XH_MvhS4ab39Y,3403
|
208
|
-
ansible/module_utils/service.py,sha256=
|
218
|
+
ansible/module_utils/service.py,sha256=MNR0VBlAxIqBDEebnhaZco14jzAt43ShfXSh9x9c79s,9797
|
209
219
|
ansible/module_utils/splitter.py,sha256=MnvQVnEZ_ceiso1JsesGjaK-PTKcSPOd2FH9FKX8wLA,9468
|
210
220
|
ansible/module_utils/testing.py,sha256=BbQdvHibcqCtze3XrX7eXYbyGF3UKRmNqfPviosSVNk,1144
|
211
221
|
ansible/module_utils/urls.py,sha256=Gr58U25lr79T0e58Lu23GfDFsXK1UDbKLgMNiQ-_j6c,55670
|
212
222
|
ansible/module_utils/yumdnf.py,sha256=dgMG2ASj5CdWgkxt8skEw9kTMt6cQVanhr4oVBSMH7M,7091
|
213
|
-
ansible/module_utils/_internal/__init__.py,sha256=
|
214
|
-
ansible/module_utils/_internal/_ambient_context.py,sha256=
|
215
|
-
ansible/module_utils/_internal/_ansiballz.py,sha256=
|
223
|
+
ansible/module_utils/_internal/__init__.py,sha256=ctgfg3AuWd5G-lgV0xzaXn7wGPNo9IYu6EI5vljRdng,2021
|
224
|
+
ansible/module_utils/_internal/_ambient_context.py,sha256=sZe6kovlSCfiqZm6T-AX_kgKuTaLf8KP7a5gTVf9fV8,2579
|
225
|
+
ansible/module_utils/_internal/_ansiballz.py,sha256=ggB5zke-eTkgqFd6AxyZKE0uu7utGGzjsoQCVQzJc4k,3736
|
216
226
|
ansible/module_utils/_internal/_dataclass_validation.py,sha256=TmPBK90g8Vvizlvu-UIrobgALH0l3LHrFUiysJfyRC8,8684
|
217
227
|
ansible/module_utils/_internal/_debugging.py,sha256=tXTzEuWNteF7SgkdeXZCHSZoxtKyHw2hlBjhlRmw7lk,1037
|
218
|
-
ansible/module_utils/_internal/_deprecator.py,sha256=
|
219
|
-
ansible/module_utils/_internal/_errors.py,sha256=
|
220
|
-
ansible/module_utils/_internal/
|
228
|
+
ansible/module_utils/_internal/_deprecator.py,sha256=9uDgboqdWQCCIQlG4i2MB9zfaZV3tcFzOA6b930H4Ak,6680
|
229
|
+
ansible/module_utils/_internal/_errors.py,sha256=tOCafo3QVr_lLKoqfD-_H4XzQN60mtpm92l9D_NF4nI,3914
|
230
|
+
ansible/module_utils/_internal/_event_utils.py,sha256=tW8DBWWLNAOmOH_Xmjm2yTc-zFCn3AO5IL4f-OY67NA,1978
|
231
|
+
ansible/module_utils/_internal/_messages.py,sha256=JQdD8P0A6FuAzOR2wB4tgvLISQTypCBEgqzI5iPJjTk,3673
|
232
|
+
ansible/module_utils/_internal/_plugin_info.py,sha256=l2ni4FANCxa_be2aBMLUN8IDaV6oCoSSzOBm-2IPzkc,660
|
233
|
+
ansible/module_utils/_internal/_stack.py,sha256=Bva6lJ6A1153O3Kkha-9hxgFDqSbinz-JEYoKMCB3qE,630
|
221
234
|
ansible/module_utils/_internal/_testing.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
|
-
ansible/module_utils/_internal/
|
235
|
+
ansible/module_utils/_internal/_text_utils.py,sha256=ilp5D5VQxpWhFdGayTioN6gqzUpQlUFiteygwZ-mP_o,263
|
236
|
+
ansible/module_utils/_internal/_traceback.py,sha256=ANiTQtAX3NfL10lW6EPU5f5s5QH9A6pam3dgfA-9Btc,3650
|
223
237
|
ansible/module_utils/_internal/_validation.py,sha256=8CKgc_ha53EgtrPCVjOU6GvsARj09U67Ys2vvhQWS6c,558
|
224
238
|
ansible/module_utils/_internal/_concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
239
|
ansible/module_utils/_internal/_concurrent/_daemon_threading.py,sha256=okMP5QPoU9YhYMQF31tUJ6ChyiXJHF-6TD9t6nfjKWE,1085
|
226
240
|
ansible/module_utils/_internal/_concurrent/_futures.py,sha256=Y0hpH1QXavZbKDude5Y8oYlxPvOhQarBhTQRc97odVs,936
|
227
|
-
ansible/module_utils/_internal/_datatag/__init__.py,sha256=
|
228
|
-
ansible/module_utils/_internal/_datatag/_tags.py,sha256=
|
241
|
+
ansible/module_utils/_internal/_datatag/__init__.py,sha256=i70Rd7Vxd3MCiGbTycFgBOYXMCpAczRQpzfwA8hX3w4,36666
|
242
|
+
ansible/module_utils/_internal/_datatag/_tags.py,sha256=Rkze_LoP5-BUYsoAJjv5ojcplHsGp6MhwER95HQvRqY,468
|
229
243
|
ansible/module_utils/_internal/_json/__init__.py,sha256=KscFIf_fl3-TTM2fe68MwETHZBCxf83nZrsbVhqkpEM,2181
|
230
244
|
ansible/module_utils/_internal/_json/_legacy_encoder.py,sha256=Qz2WVbgFxprEpP174zrK7LIKEIk_cLwPsh2gbahavKo,1191
|
231
|
-
ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=
|
245
|
+
ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=evHUwP-QgSGgA72Hq9zZwPkcnA142TkWyHAjyJpA-uY,16945
|
232
246
|
ansible/module_utils/_internal/_json/_profiles/_fallback_to_str.py,sha256=3tlLf_VmQ35ukRylBvbCBz8_oYgE1kKeqA1uGr_imps,2439
|
233
|
-
ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py,sha256=
|
234
|
-
ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py,sha256=
|
247
|
+
ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py,sha256=D2Gau2wGVEpphcvik8jwVacr-zSSWqozkQLBTbJ0RjQ,1154
|
248
|
+
ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py,sha256=iWW_R2TadLiUPyWDkvGDRwehX6b7LWPWkqdYzIAQslg,1581
|
235
249
|
ansible/module_utils/_internal/_json/_profiles/_module_modern_c2m.py,sha256=C--vG1dgfVd1hLFj8M4ThpGtsTp5Osfcf5oTtblALlQ,1202
|
236
250
|
ansible/module_utils/_internal/_json/_profiles/_module_modern_m2c.py,sha256=XFW1NwDO6ouI7D_BLKFWY6wFVHKuZwuhrk7s8FOw6pU,1179
|
237
|
-
ansible/module_utils/_internal/_json/_profiles/_tagless.py,sha256=
|
251
|
+
ansible/module_utils/_internal/_json/_profiles/_tagless.py,sha256=7Ic882IROz3ti8ruBMB54qhpRyWR_S8ZYh23hsWL8i4,2207
|
238
252
|
ansible/module_utils/_internal/_patches/__init__.py,sha256=zNEWEYnuQyFovxTN3UIjzwgVNgus85C_GzVk7ZOWpgQ,2565
|
239
|
-
ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=
|
253
|
+
ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=gj9hhy2bg2KCUgkrIEEzAwLJ4R-EvJbnZsuSlO-cJHE,2225
|
240
254
|
ansible/module_utils/_internal/_patches/_socket_patch.py,sha256=3vVyCy-rCedETOMFibzhookih-7YsYBsue9YurfIeVI,939
|
241
255
|
ansible/module_utils/_internal/_patches/_sys_intern_patch.py,sha256=ym-ZcAG56i41tr6VMpn8hWrNt10HsAvAF9Eiy5PZHWU,849
|
242
256
|
ansible/module_utils/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
257
|
ansible/module_utils/common/_collections_compat.py,sha256=476Gfp4DP1g5ssOW_P-FFakUxC7palI_1TIBtnDBsfk,930
|
244
258
|
ansible/module_utils/common/_utils.py,sha256=940v5oANJiA9XJ6i_RtCRvA1e5GPJh3b8lRXY0KpOSI,1082
|
245
|
-
ansible/module_utils/common/arg_spec.py,sha256=
|
246
|
-
ansible/module_utils/common/collections.py,sha256=
|
259
|
+
ansible/module_utils/common/arg_spec.py,sha256=qfosoeoqVhTJ9shZT2Bvg7xh5cFSZiqjaQKXeOasbV4,12354
|
260
|
+
ansible/module_utils/common/collections.py,sha256=fmrKF_dat5DTzMfoeVas6iGW5DrX_fjnhQAk4jBfDB8,4005
|
247
261
|
ansible/module_utils/common/dict_transformations.py,sha256=OEb7uuXpAErRp69aMW8KFng0qVBYqIR3133cFWQ5VeI,5525
|
248
262
|
ansible/module_utils/common/file.py,sha256=LyBp_C_nbcsalY8biqQ_2WQ_ZT1iXe8ub1nNv5alI84,2982
|
249
|
-
ansible/module_utils/common/json.py,sha256=
|
263
|
+
ansible/module_utils/common/json.py,sha256=4M_1BjxFdX46-Iq1lNmb-4SLS7z5OXSLo6-lm4ukx3Q,4046
|
250
264
|
ansible/module_utils/common/locale.py,sha256=X-z_wjmd1ipcWRAahfcDKXr3uxMRqwnvALUS1fQ4XaE,2296
|
251
|
-
ansible/module_utils/common/messages.py,sha256=adW8JzA6Kj_efal-P1d6k3LJ7eJ2opPmperzgFVDpqk,4727
|
252
265
|
ansible/module_utils/common/network.py,sha256=ffFrBriNPHFDslP54NRN3QaJADEWBG7eCgv5c7RcOHs,4226
|
253
266
|
ansible/module_utils/common/parameters.py,sha256=cTPoF2XceWvaqcr1Cks0r4yq3PLPhELAGooY4G2MJOY,37484
|
254
267
|
ansible/module_utils/common/process.py,sha256=4Iantrh13r_70oKljgoMeYi4C0EpjqQawLcbKcvxw9o,2234
|
255
268
|
ansible/module_utils/common/respawn.py,sha256=bR381qAFnXdhneNc6EEaBgbZaiNt4QGEJ0tHoNMtsHk,4250
|
256
269
|
ansible/module_utils/common/sentinel.py,sha256=aPX7KPw1PifJX9wq8qfStEU5oiEPmOJEn76I_08vsjo,2372
|
257
270
|
ansible/module_utils/common/sys_info.py,sha256=sFcTKy_3iurRMBsB7aocWz_H-yO4Bgq_95zgOMl4slQ,5436
|
258
|
-
ansible/module_utils/common/validation.py,sha256=
|
259
|
-
ansible/module_utils/common/warnings.py,sha256=
|
260
|
-
ansible/module_utils/common/yaml.py,sha256=
|
271
|
+
ansible/module_utils/common/validation.py,sha256=GNGH0S7OvlJ35AY1PQDykiEawT0B1uviVTetLmYj6to,20180
|
272
|
+
ansible/module_utils/common/warnings.py,sha256=E94FJ89RQweJue2ZqdGlWyGXtj8VAmXmmiCGF9Ix-HE,5103
|
273
|
+
ansible/module_utils/common/yaml.py,sha256=H-XGTe9sZlNunlTgj2kSPC7nSXOY6NDGyhc1Era_VGQ,2899
|
261
274
|
ansible/module_utils/common/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
262
|
-
ansible/module_utils/common/text/converters.py,sha256=
|
275
|
+
ansible/module_utils/common/text/converters.py,sha256=37fSfGQs3XjHOEMmGG4SVEE8hMlNuO-QAwn9RN_5Mfo,12138
|
263
276
|
ansible/module_utils/common/text/formatters.py,sha256=6r1gHFGWVLPHdUloc89tUjx_TJvjeC9NKJmen4hV6Tc,4502
|
264
277
|
ansible/module_utils/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
265
278
|
ansible/module_utils/compat/datetime.py,sha256=7exiAHnMJESffXSDcqooSLL1CyYImeFS5iOp4C8erCQ,1444
|
@@ -323,7 +336,7 @@ ansible/module_utils/facts/system/caps.py,sha256=ivWnrNR_L-Qicc9mCLjzCNahPgChaI8
|
|
323
336
|
ansible/module_utils/facts/system/chroot.py,sha256=-95UvBeowED7_5-lM8-lbB8fspCvK37omufu-IEyrm4,1488
|
324
337
|
ansible/module_utils/facts/system/cmdline.py,sha256=jlBoYdenGUy2ooiATuudP4cYsVVcynKOVlAPOpQndAQ,2608
|
325
338
|
ansible/module_utils/facts/system/date_time.py,sha256=cFg729Q2xCuKx0D3nCECr-u5mbltGp8l5txXJ26Q8fM,3086
|
326
|
-
ansible/module_utils/facts/system/distribution.py,sha256=
|
339
|
+
ansible/module_utils/facts/system/distribution.py,sha256=_U2OhmIywKu0bwtkAycRHMeVQvlD0aeNTXkG1giPMkI,33543
|
327
340
|
ansible/module_utils/facts/system/dns.py,sha256=N_dGrdB6B7TLfD-aiNqZTs7BnNIQopgPm-wxyrH2jxw,2664
|
328
341
|
ansible/module_utils/facts/system/env.py,sha256=tyVvRA9OJxWbODBu309C2n6DvaXG9wrQG-bKril2C38,1156
|
329
342
|
ansible/module_utils/facts/system/fips.py,sha256=9zdP23yXfY4re6Ut4OeQVYO31JkKoy1kD-HeQdSLZ5Q,784
|
@@ -343,13 +356,13 @@ ansible/module_utils/facts/virtual/base.py,sha256=BijfSGBeCSdDzK2jeeQ2oymgupItCv
|
|
343
356
|
ansible/module_utils/facts/virtual/dragonfly.py,sha256=fx8MZjy6FqfSpshxnPyGs5B4FezmYFqqTr1XibWWSeE,959
|
344
357
|
ansible/module_utils/facts/virtual/freebsd.py,sha256=Wc3hjsxrjWnLaZFBX3zM4lZpeGy4ZS5BTOXTs9SRN-I,3018
|
345
358
|
ansible/module_utils/facts/virtual/hpux.py,sha256=NLQfUpXE7Gh-eZFfLyugvnnJjWFIGv9xqjC_zV4DLKw,2823
|
346
|
-
ansible/module_utils/facts/virtual/linux.py,sha256=
|
359
|
+
ansible/module_utils/facts/virtual/linux.py,sha256=j7NvGDsig-emyAHPLXU9UNdKsuOcWkw-3drfJQXBEeI,17861
|
347
360
|
ansible/module_utils/facts/virtual/netbsd.py,sha256=53n3E9vowi8kCbFyj7vDeKocZ3OU_TLVSKRJRU8SenE,2896
|
348
361
|
ansible/module_utils/facts/virtual/openbsd.py,sha256=J8Ow7x3J5ZuHFThqAwIdAdTLV1V9vN_U965Q34TAvNA,2785
|
349
362
|
ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH2j5KO3F5jKo3Ec,5700
|
350
363
|
ansible/module_utils/facts/virtual/sysctl.py,sha256=suvfSdKL5e_AAPCxE_EQRiqNHzpMJYSucT4URyn8Qxw,4741
|
351
364
|
ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
352
|
-
ansible/module_utils/parsing/convert_bool.py,sha256=
|
365
|
+
ansible/module_utils/parsing/convert_bool.py,sha256=WN-LzXRsO96kNig3cngTu_3sjM2xxnoSXAqUfynhGQM,1265
|
353
366
|
ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=NYfvSKqsTCC2YQIx-pGPpKKS3BG499v8ZqQHlHiXsOQ,20127
|
354
367
|
ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
|
355
368
|
ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
|
@@ -367,20 +380,20 @@ ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
380
|
ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
|
368
381
|
ansible/modules/apt.py,sha256=eMoHgh-4SWWu6d3VmxybzP-ACTi0sKaJOkMIqrh1Sjo,62708
|
369
382
|
ansible/modules/apt_key.py,sha256=DmmNkVdRrhOCEhItsbXUA3TuAfXZW4A0CGZu4JeqL90,18485
|
370
|
-
ansible/modules/apt_repository.py,sha256=
|
371
|
-
ansible/modules/assemble.py,sha256=
|
383
|
+
ansible/modules/apt_repository.py,sha256=uNxVJw9RmaPjH90KniLmNyR7BKL_wBe1wAUAOFx7GF4,30814
|
384
|
+
ansible/modules/assemble.py,sha256=4_Cy7mS-4Yhpz0pnj6sVes39DTlgzBLlfTKEsHCQ9D8,9271
|
372
385
|
ansible/modules/assert.py,sha256=B41GXAdBQ6XbYj9G8ENx29fhAlcnyBXm8zDqbd1TnMU,2954
|
373
|
-
ansible/modules/async_status.py,sha256=
|
374
|
-
ansible/modules/async_wrapper.py,sha256=
|
386
|
+
ansible/modules/async_status.py,sha256=EnE4-KbUduCUm4sVhpmNlAEbCo6fA8fV4K9MWNnvG20,4742
|
387
|
+
ansible/modules/async_wrapper.py,sha256=q1WHnGwHkWfCpsnT126LAPkHGxteIQsG3I08Rm_T2qE,12038
|
375
388
|
ansible/modules/blockinfile.py,sha256=CkzCw73Kbkvgb763C1x_qUMkf6UdJJsyZC_Kiy85Unw,15450
|
376
389
|
ansible/modules/command.py,sha256=v7KAW_uI4zhBwaKBDZaHNSk3coZlyXoG9xGtDOM4MaY,14037
|
377
390
|
ansible/modules/copy.py,sha256=uLltSKg-0poPjtV9WKhq0w4Z_6wOKm8mNR8How-DHXw,26725
|
378
|
-
ansible/modules/cron.py,sha256=
|
391
|
+
ansible/modules/cron.py,sha256=trFmqi8l8jADTDyNZn1COe_-GpCi9aNQj8wUCn5O7SA,26709
|
379
392
|
ansible/modules/deb822_repository.py,sha256=kHBZlGGQ_fA3dMxx_NzjC-L2ZuhkEwTTfLS6ZC6qph4,15760
|
380
393
|
ansible/modules/debconf.py,sha256=YAS1yba0yaxPrfFCLFLQwtHxlpriNxiJiwpDnmm3JP0,9362
|
381
394
|
ansible/modules/debug.py,sha256=E2UADFGHgS78KxCiOdXoojX5G4pAAMz32VGHgaPObNs,2908
|
382
395
|
ansible/modules/dnf.py,sha256=BStesAQE40-hZRMwV8IZW5j3yIv1wd1XGXsXjW1jKfw,52289
|
383
|
-
ansible/modules/dnf5.py,sha256=
|
396
|
+
ansible/modules/dnf5.py,sha256=W-XUpu0NsKcJifvWfYHj6ba4fORI4YeYVU5ZiTazkQE,31659
|
384
397
|
ansible/modules/dpkg_selections.py,sha256=RWtzxNNOfQ5SdwMwnt_1q-IJhLVb-nxNAriJwRHNVuI,2805
|
385
398
|
ansible/modules/expect.py,sha256=yBisXCvL8OY5c_9AibH8xY3elmKebCwoHZAJj-MFPU0,9279
|
386
399
|
ansible/modules/fail.py,sha256=kppam_caBllcF5IcKEYd-Xc--okSAOWNG9dVbpn2CwM,1659
|
@@ -390,10 +403,10 @@ ansible/modules/find.py,sha256=Ia2QUTCHzc58MiLUOFTkYa_NHgM3rGsuNDtrWVwzvrE,24051
|
|
390
403
|
ansible/modules/gather_facts.py,sha256=3t2_XMgKuB-U35tnO-JbGEsQ_E31SnZxRQ-B_DVkIu4,3107
|
391
404
|
ansible/modules/get_url.py,sha256=1JW5sLkkWbmXmh4rxNX05XHwn0QkcM10dnqqQ_PXMp8,27372
|
392
405
|
ansible/modules/getent.py,sha256=tq3z0Szq_m2gp4DOgACRvNJzh-tkXGzd2Ew8XxrGRWM,5592
|
393
|
-
ansible/modules/git.py,sha256=
|
406
|
+
ansible/modules/git.py,sha256=BtZWA4furfNfPefusAD-ihBROKHdRcBucpvpLJttxJU,57126
|
394
407
|
ansible/modules/group.py,sha256=UKbXzwsgAFWWMlgFW8R3CyzthJXXu5JHnHnj7IlqOac,23747
|
395
408
|
ansible/modules/group_by.py,sha256=_RDYbNJS27eosefvwnBCM86GyobaY-h3ZiWkd04qU68,2416
|
396
|
-
ansible/modules/hostname.py,sha256=
|
409
|
+
ansible/modules/hostname.py,sha256=txDX_C4pmKL5S3EeTZH8V5w25SrqMu8D5IQan7nNsTs,28163
|
397
410
|
ansible/modules/import_playbook.py,sha256=QP6ccgKA5Re8jmoLHK35hKVeuJnzTRDgZbEoo_uyFFk,2056
|
398
411
|
ansible/modules/import_role.py,sha256=LkGQWDRvU2EUJIamn9OcdpcpfVPpswhLildcHe9urS4,3730
|
399
412
|
ansible/modules/import_tasks.py,sha256=ZhlJafQ3ETM9Pi3Qt2gfedBI-q73HaeJigBKhR8c-eI,2137
|
@@ -409,13 +422,13 @@ ansible/modules/package.py,sha256=ce2O1o3tzPRTyYYvYNw16OLed8ke8f5AAXMGF1vi8XU,37
|
|
409
422
|
ansible/modules/package_facts.py,sha256=Tvq3ULR8oyIx-lCJzY-wwWlL2gGiwLq9jS5H8Hjmick,17284
|
410
423
|
ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
|
411
424
|
ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
|
412
|
-
ansible/modules/pip.py,sha256=
|
425
|
+
ansible/modules/pip.py,sha256=GEtBIzOqZCtQbKwfWfZ-xHzDxtiXdCBe7kH7l-5ghBY,32726
|
413
426
|
ansible/modules/raw.py,sha256=hPToqCii1ZolXVSaPmu-tCouEO1PoDIYjBtevoUvqIE,3741
|
414
427
|
ansible/modules/reboot.py,sha256=P5mbaDi_k-ISjR5M0adW6yeyssahw4QvXYqSN7elypk,4808
|
415
428
|
ansible/modules/replace.py,sha256=jAnGfWD38_zo8gC-rM3LkPwch54w9j044Bpr8mjpP2Q,11683
|
416
429
|
ansible/modules/rpm_key.py,sha256=8_DnYHOL1lAOlb_V5Y8T-qHwptjJxfaZw1I35tyGT7Q,9312
|
417
430
|
ansible/modules/script.py,sha256=WmdINj1MxpccX9MspvWg6aP5MZGlfm0KSPpqNY7h0fk,4410
|
418
|
-
ansible/modules/service.py,sha256=
|
431
|
+
ansible/modules/service.py,sha256=4cBxGoDrJ1I737LwxL4_ctYN-sIZU1lH3OUs0sxXssI,62026
|
419
432
|
ansible/modules/service_facts.py,sha256=J-t3vjwTq7a4NuOhLlF0VG9J5rx0PaWVFpslKJVzCTk,21243
|
420
433
|
ansible/modules/set_fact.py,sha256=3MysP4bx0XnYevu5L7iAJPLuq7ykp6lixeauU4LKEQc,5676
|
421
434
|
ansible/modules/set_stats.py,sha256=3X3noQW_QQaG3Hb9rsxSDw6HP34MjqYJaqUF7RUL4-E,2641
|
@@ -426,7 +439,7 @@ ansible/modules/stat.py,sha256=cD2l6TQjwrJhIY-SCgS9W_i6WC6FreSDSudFHmH63R8,18658
|
|
426
439
|
ansible/modules/subversion.py,sha256=XEhsibJHb5rg_yioveP_c-THxbh0ZMm0d8qApk02MZg,13485
|
427
440
|
ansible/modules/systemd.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
|
428
441
|
ansible/modules/systemd_service.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
|
429
|
-
ansible/modules/sysvinit.py,sha256=
|
442
|
+
ansible/modules/sysvinit.py,sha256=Nrs5gLyHKZsqtm_ymFO0e0wB2KSDXYfbDt-uNlgUiF0,13962
|
430
443
|
ansible/modules/tempfile.py,sha256=3ZljXNOu06T5ObTAz5Ktm_WKFrJACHwLf-01F7isf5A,3570
|
431
444
|
ansible/modules/template.py,sha256=y1zu-ZZ0P-Cpxjddzk5V5GVpQNNfQL8E5sVeAb2plR0,4537
|
432
445
|
ansible/modules/unarchive.py,sha256=ESs24Ceb9CC1rwF06qtOfg4xZdDLmiDbmNyUjVMLefE,45943
|
@@ -437,17 +450,17 @@ ansible/modules/wait_for.py,sha256=GP1DbV4kJMxMH2GNH8RuhQN1SV-H5RJb6KNUBvuqQL0,2
|
|
437
450
|
ansible/modules/wait_for_connection.py,sha256=pzmYONmV3vubd8SxrDVMsoradq6n5g-ZJpkuEgptUlk,3367
|
438
451
|
ansible/modules/yum_repository.py,sha256=VdqnEsQE4QAqDCt6bmlLFdSPOVNHHyFHOoyH4DP9RjY,24461
|
439
452
|
ansible/parsing/__init__.py,sha256=NMP9ZkK59SNdQktw76aWAXVAm5U2POXLgAK7wH-1h0g,742
|
440
|
-
ansible/parsing/ajson.py,sha256=
|
441
|
-
ansible/parsing/dataloader.py,sha256=
|
442
|
-
ansible/parsing/mod_args.py,sha256=
|
443
|
-
ansible/parsing/plugin_docs.py,sha256=
|
453
|
+
ansible/parsing/ajson.py,sha256=nv82WTeWYuKdy4LE_YM6nhLR7eb-Tyr4F6arjTP8nmY,692
|
454
|
+
ansible/parsing/dataloader.py,sha256=lT4jy_t0iKHdEcKlasZvRWscXxAp-SJUDT4_arEF1s8,22743
|
455
|
+
ansible/parsing/mod_args.py,sha256=ACsZ_Mv3jfquh79q6yP5xplCzSAhlaXswhyUBzXua4U,14194
|
456
|
+
ansible/parsing/plugin_docs.py,sha256=UYWDpLCF4FrBU0lxgR6C2bkoa7N8TBplh4KcW-B6enk,6326
|
444
457
|
ansible/parsing/quoting.py,sha256=myYxG625XK6rgNULbBuKp23G2R83c0UilrF1ZImDjGs,1057
|
445
458
|
ansible/parsing/splitter.py,sha256=hgrgDTa8v6WVvya8I-2DJr9HfcgZeg6hMb9p4nSnE98,11604
|
446
459
|
ansible/parsing/utils/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
447
460
|
ansible/parsing/utils/addresses.py,sha256=gxdde1fWiOiG6r8wrwBuQS9EdbHxTQJA1peIl0mz47Y,8084
|
448
461
|
ansible/parsing/utils/jsonify.py,sha256=mDFpCkxbn7mZQoBtN3occq4EzaSxdmol9LJwXB0-T5g,1279
|
449
|
-
ansible/parsing/utils/yaml.py,sha256=
|
450
|
-
ansible/parsing/vault/__init__.py,sha256=
|
462
|
+
ansible/parsing/utils/yaml.py,sha256=F3PQLD7ptyIB3DkutFPotjbuwhQ02YDtK0guLLs5zpo,2325
|
463
|
+
ansible/parsing/vault/__init__.py,sha256=uqbTyPjKkLX2xy8FmH9E5P--IdfhEJ2VHAbX8mgmDJ8,60373
|
451
464
|
ansible/parsing/yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
452
465
|
ansible/parsing/yaml/dumper.py,sha256=_GyNiVEk-ivwYtl9qkPe11_6FJA-tZGlt6jOqwdQQpk,298
|
453
466
|
ansible/parsing/yaml/loader.py,sha256=REAzmajcwu2Vld9IEl62dPRTMHBY_iJGVYE3IKNhx4o,298
|
@@ -467,9 +480,9 @@ ansible/playbook/loop_control.py,sha256=5rZz6aWXpvvwOD4CzrS_b_cnXIu4Gf56czkomX1N
|
|
467
480
|
ansible/playbook/notifiable.py,sha256=MQz4VZuOga35VLcdUxVd9FQVzFg-djtQZhs09DS2juA,299
|
468
481
|
ansible/playbook/play.py,sha256=RHxQgshU6c7t8qFCBdZOutdXjRjrWeqWItPJJSw2GJE,17357
|
469
482
|
ansible/playbook/play_context.py,sha256=fxK1UTt4kXEO9I_-gDX6W0xscCcDWa8QM-m0olD5mQM,13639
|
470
|
-
ansible/playbook/playbook_include.py,sha256=
|
483
|
+
ansible/playbook/playbook_include.py,sha256=XNNlb-THo8rYQ-zFJpsomt29VsF-eRM9wbgwTCHqfw4,7634
|
471
484
|
ansible/playbook/role_include.py,sha256=DV7num4uVJvkIY4IHgB0uHmE8-gRmaNYbuoqP0-7dTY,7610
|
472
|
-
ansible/playbook/taggable.py,sha256=
|
485
|
+
ansible/playbook/taggable.py,sha256=fstOOaGXukB5t9Bx-89zsEB9UN9FwOzhTGx8iADG2ec,3293
|
473
486
|
ansible/playbook/task.py,sha256=iuvBMyaguZ_PCImg6FdY3ZAJ9eodDkozkSEQtpc1zq8,24533
|
474
487
|
ansible/playbook/task_include.py,sha256=y7jSK7CqYEXmXShJOPUi3lCYuZI85197Gp4zLYsyUPw,5258
|
475
488
|
ansible/playbook/role/__init__.py,sha256=cpm0nCmF_F0UO5tXpmkV49auW7DR5YRwdHOUEH1wXSs,29652
|
@@ -477,36 +490,36 @@ ansible/playbook/role/definition.py,sha256=44IRVqojhemfrdC7bU7aIiYwcFm6kWr30Hn4x
|
|
477
490
|
ansible/playbook/role/include.py,sha256=yGBXglTQDtCpZ2XO1mVxp2UtsdLpLTt30KVR2AbBe5U,2159
|
478
491
|
ansible/playbook/role/metadata.py,sha256=h439HGUucs2gOMUJlp2M0OO0_wnWWlQmTs_sOe8h6Sc,5018
|
479
492
|
ansible/playbook/role/requirement.py,sha256=CNgLa0J6zZk2YQ_aeALnjQvehkkFXhrK8LQQZs7Ztzc,4173
|
480
|
-
ansible/plugins/__init__.py,sha256=
|
481
|
-
ansible/plugins/list.py,sha256=
|
482
|
-
ansible/plugins/loader.py,sha256=
|
483
|
-
ansible/plugins/action/__init__.py,sha256=
|
484
|
-
ansible/plugins/action/add_host.py,sha256=
|
485
|
-
ansible/plugins/action/assemble.py,sha256=
|
493
|
+
ansible/plugins/__init__.py,sha256=kQAlW-cB8b6S7giuIFisYimM9MMWm3OCnlAEREt2kks,7413
|
494
|
+
ansible/plugins/list.py,sha256=Ek4_NWm8Tg59m4jZDYZF9x4NhGdx99bKUuSIEtvgDm8,10880
|
495
|
+
ansible/plugins/loader.py,sha256=NoenbtZCxnG4gd9Lw7feYYgHKAZWthOEacu6piU97DE,81925
|
496
|
+
ansible/plugins/action/__init__.py,sha256=tFljc9kr2D6VfxcxlTA6sQsMd8k1WbqNHStL7zhTN7U,69312
|
497
|
+
ansible/plugins/action/add_host.py,sha256=Pil69LPaJpUulx-483MkZBRaiFaf14CkT0cCVw6aa_s,3575
|
498
|
+
ansible/plugins/action/assemble.py,sha256=h3_tsJBgWKsRrLXSM03468iRiDTDJlE-dAJhZ-sbHOY,6153
|
486
499
|
ansible/plugins/action/assert.py,sha256=k1kLWyaXNE-XTVWBX1eIHaSZpGg8O8WeJfa62vqzcLM,4007
|
487
|
-
ansible/plugins/action/async_status.py,sha256=
|
500
|
+
ansible/plugins/action/async_status.py,sha256=_kcqeVJ6rrLKS_nGr4z1wApVCHC9pBU66YcuCTchasg,1964
|
488
501
|
ansible/plugins/action/command.py,sha256=N09Vf2QypBMZ6NSptQGbf6EAN-kfqLCROGPkOSgV3SY,1069
|
489
|
-
ansible/plugins/action/copy.py,sha256=
|
502
|
+
ansible/plugins/action/copy.py,sha256=dq8wGc83xYyRc9X887QnOJxdRAt0rB2-NJQxuxowClw,27570
|
490
503
|
ansible/plugins/action/debug.py,sha256=KPWtGEPbc119_e1rNQztCB-wzelJObAv16qJNHPUNb4,3604
|
491
504
|
ansible/plugins/action/dnf.py,sha256=2ObzxBLRPBPy2JCp3wWRzR1fIEHzhS5y34CoAzTXqN0,3664
|
492
505
|
ansible/plugins/action/fail.py,sha256=MzIefYaHaRdpjgnqc9eNge0P32btlTPzO6TB22jkadk,1457
|
493
506
|
ansible/plugins/action/fetch.py,sha256=S55lvqxBTmKSV3IrcgKZTZnXz6xCSiPWLeZbUk1VzFI,10166
|
494
|
-
ansible/plugins/action/gather_facts.py,sha256=
|
507
|
+
ansible/plugins/action/gather_facts.py,sha256=vr-3BJiBDP25aJd9e1uydpS3r8Np2T6nubUbYAls58w,9109
|
495
508
|
ansible/plugins/action/group_by.py,sha256=zbkI2A-6jyK9Ux--QVWZMJOp2VNxjaAebwJpMG6YYnc,1894
|
496
509
|
ansible/plugins/action/include_vars.py,sha256=c7lKJ7qlcdwm0HP8XRm-8VxK9JLE4feo-WDw0Tjc7RQ,11553
|
497
510
|
ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
|
498
|
-
ansible/plugins/action/package.py,sha256=
|
511
|
+
ansible/plugins/action/package.py,sha256=F49tAgsQpeVxHiraLQW_LyjAHyTCaZty1GS6Zv2UwYE,4807
|
499
512
|
ansible/plugins/action/pause.py,sha256=dlBT3oSreP_Wp850MarMuNuROF_UiBfJ6ccexkV94zU,5674
|
500
513
|
ansible/plugins/action/raw.py,sha256=4kmANddcBwXFRhu8zIwBu392QE-p7WReO4DWD1YDnGU,1762
|
501
514
|
ansible/plugins/action/reboot.py,sha256=EFTn8KtawFI4E38COh55_ygDe0vkpI_vMdHDNBKB5ao,22032
|
502
|
-
ansible/plugins/action/script.py,sha256=
|
503
|
-
ansible/plugins/action/service.py,sha256=
|
515
|
+
ansible/plugins/action/script.py,sha256=KNnxVi_QTEEcoS7zOe2GnbY6ps8_OJWMskJF7PkZvsE,8601
|
516
|
+
ansible/plugins/action/service.py,sha256=H3byRUoOITfEvIDnjuX7LunDVc6KiliXn3mT3R0BxiE,4298
|
504
517
|
ansible/plugins/action/set_fact.py,sha256=G1Q0HcTaXFIykNvjSG65tFkif0dMuvMvt3T44OlrB6Y,2186
|
505
518
|
ansible/plugins/action/set_stats.py,sha256=wRmlGzp5TAaLrPlz2O6kL6F_uSGYBaxtnF4jWmB3qeY,2476
|
506
519
|
ansible/plugins/action/shell.py,sha256=pd7Dm6gAZXWNAqANd7ETHSs90le7VXAxe7pB97T_zwU,1527
|
507
|
-
ansible/plugins/action/template.py,sha256=
|
508
|
-
ansible/plugins/action/unarchive.py,sha256=
|
509
|
-
ansible/plugins/action/uri.py,sha256=
|
520
|
+
ansible/plugins/action/template.py,sha256=IaM9zkVrnqXjWBgpmnber9OdJ0CZ6aqyyjNUan968dw,8345
|
521
|
+
ansible/plugins/action/unarchive.py,sha256=9ocpE3QnpvnZTQcE_Rf1et3iG1sqCmW9yzy1BvlbDDY,4422
|
522
|
+
ansible/plugins/action/uri.py,sha256=5d4kATgn2boX7Y4dey55B_Wg3zpU-8drVhDQ2Zd5xf4,3358
|
510
523
|
ansible/plugins/action/validate_argument_spec.py,sha256=U-g8PugBg3QTTqkKQwtOS3NNou12yT4NQtXqJ10qBw8,3937
|
511
524
|
ansible/plugins/action/wait_for_connection.py,sha256=ALvq83mqFmZ1S8pmdOwdVqQxKax90De5U3dZBKjC_dU,4564
|
512
525
|
ansible/plugins/become/__init__.py,sha256=oifRA8cKuxrBxqiwVdT0UX8nOEZuX-VV6-I1LqvbI1Y,5210
|
@@ -517,26 +530,26 @@ ansible/plugins/cache/__init__.py,sha256=mkRyVlibIizqO8ao7g5jB0APQKhbngcVobOVmD4
|
|
517
530
|
ansible/plugins/cache/base.py,sha256=bBRxjoyZ4Y18O4MGH_U5uI8NQiPDRZzxWKjMqyvta4Y,1143
|
518
531
|
ansible/plugins/cache/jsonfile.py,sha256=BVmwy7KgUkEDRgq1f82NQTQUEpxn0MIfbtExHSP5s_I,1659
|
519
532
|
ansible/plugins/cache/memory.py,sha256=AzxNRhijtssd2xZoEQYO4kiYh8OQZeE0vFgngla-QPE,1166
|
520
|
-
ansible/plugins/callback/__init__.py,sha256=
|
533
|
+
ansible/plugins/callback/__init__.py,sha256=UEb83C36GFe0SgFdJn55IQ5tl-NTay6MU_2QOFz7sek,29041
|
521
534
|
ansible/plugins/callback/default.py,sha256=31TI9bGMftSG4Frp7ixqM9nX5nI0r3TjNgkUon9n3vw,17632
|
522
|
-
ansible/plugins/callback/junit.py,sha256=
|
535
|
+
ansible/plugins/callback/junit.py,sha256=HijVroOgMK5nBGEr8lc3LwGNtIcOAe3FYdEI_BxFgJk,14710
|
523
536
|
ansible/plugins/callback/minimal.py,sha256=4POsci-dcNcqS34_N6OHfnQEdWRYNou0gpp7n2Icjsw,3237
|
524
537
|
ansible/plugins/callback/oneline.py,sha256=GoAhI9TVsrf-4cXXeu6VK2a9Pd0c_Ko2MPp0FlzeepI,4173
|
525
538
|
ansible/plugins/callback/tree.py,sha256=gjKWlkx5i9G0SF7VjKKs8C8j3NG9WVOtXsAsGjKtWQs,3649
|
526
539
|
ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42AKMy1E,22719
|
527
540
|
ansible/plugins/connection/__init__.py,sha256=5Dk6zdWL_uDwLk1Iy0WVyhqS55qytHMCr3Rt9pUfwfg,19506
|
528
|
-
ansible/plugins/connection/local.py,sha256=
|
541
|
+
ansible/plugins/connection/local.py,sha256=m80y1RHaoOW4HlQfq3F7BL4tpKpbv9zBQyd6MshwRwU,12174
|
529
542
|
ansible/plugins/connection/paramiko_ssh.py,sha256=q81eDkrwpNox87NLL1jEptUl_PTE7-KDANIhF66dSEQ,27651
|
530
543
|
ansible/plugins/connection/psrp.py,sha256=BZrcc6wu5kZrYs0S0vTnnoV2XXlt98-KcIoR70skSpA,30736
|
531
|
-
ansible/plugins/connection/ssh.py,sha256=
|
532
|
-
ansible/plugins/connection/winrm.py,sha256=
|
544
|
+
ansible/plugins/connection/ssh.py,sha256=KzCAT2Ml0STsYDHxZFFGpZHp9ITLQ8LnqwzP45ha_08,71362
|
545
|
+
ansible/plugins/connection/winrm.py,sha256=KOLZHGNtyLIhCCHRsu0pzJX5X_UFfQIFdHy-FU1IXrM,38488
|
533
546
|
ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
534
547
|
ansible/plugins/doc_fragments/action_common_attributes.py,sha256=Xj26JljzTDZD9aZw6nBSvdW-i5z8M7Fk6rzQqNsYKm8,2442
|
535
548
|
ansible/plugins/doc_fragments/action_core.py,sha256=y8SZ8aTI4Imrm7TZPyEje4Mp5_Qc-itky7y9YfSo_vE,2855
|
536
549
|
ansible/plugins/doc_fragments/backup.py,sha256=xRDCmzQXdP5JuLND3vVcpi-r_ZUxffd65RyfDQvDu6o,507
|
537
550
|
ansible/plugins/doc_fragments/checksum_common.py,sha256=7FvlK39jHxRfWZmLwypBz1Y1ccsEV9CyHDN3uAe6P9Q,995
|
538
551
|
ansible/plugins/doc_fragments/connection_pipelining.py,sha256=qakFITWoDcWWS90fLZ7HbEglbyBrqgg89Cf5Un4k2aI,1182
|
539
|
-
ansible/plugins/doc_fragments/constructed.py,sha256=
|
552
|
+
ansible/plugins/doc_fragments/constructed.py,sha256=MystVfEBISSpKrIGBQlXLhqnNX25Mn5i3Ze2ChYrYqU,3320
|
540
553
|
ansible/plugins/doc_fragments/decrypt.py,sha256=gTRUiNTINhI80f97LVxNzjTs1GEgTfcQRCt4nN_CXDw,487
|
541
554
|
ansible/plugins/doc_fragments/default_callback.py,sha256=w8qnzrpFjWEyQB8GhdEICV3Yhnd4FY-rN0Fvu55ksP4,3212
|
542
555
|
ansible/plugins/doc_fragments/files.py,sha256=MkzsSvm2KnJr-Yhrv-k8xOi2rVyH9N7tAM4MV9zozn0,4760
|
@@ -560,11 +573,11 @@ ansible/plugins/filter/combinations.yml,sha256=LttrIICjapNtZHWnvJD-C9Pv3PIKP16i8
|
|
560
573
|
ansible/plugins/filter/combine.yml,sha256=QH2zy4qr9wPpEyr-XKmphbls60M4ZSdAkj7r3cuvC3Q,1671
|
561
574
|
ansible/plugins/filter/comment.yml,sha256=nJVzBF2Qiwa-qQRioJK42cbWt3Rb5LYmfvGPhrhU8Rc,2139
|
562
575
|
ansible/plugins/filter/commonpath.yml,sha256=SPx3fPy4GPJaKmY2S8aJI1I800FOgErYAKVXV1etp1Q,696
|
563
|
-
ansible/plugins/filter/core.py,sha256=
|
576
|
+
ansible/plugins/filter/core.py,sha256=TDVir4QsRCC1zUFE20nqPLpOcbrApdcyNJOIbP8qrnY,27605
|
564
577
|
ansible/plugins/filter/dict2items.yml,sha256=A3gL25dyGrSqP44PtqQgg6paUnwReAzC7Brkqel-39E,1523
|
565
578
|
ansible/plugins/filter/difference.yml,sha256=YJnJJMYejCcBaNgxFBhYj-z6OysRHmss1gUgrIJBQFk,1091
|
566
579
|
ansible/plugins/filter/dirname.yml,sha256=Z7p7ay8s3_Zee6gIu7qr4wUC-an7lwLwuoVmgHQCKyg,820
|
567
|
-
ansible/plugins/filter/encryption.py,sha256=
|
580
|
+
ansible/plugins/filter/encryption.py,sha256=5i1XDkd5eODhxrG-_8wjGqbsyFPtU4W3Otbq4HYz4X8,3071
|
568
581
|
ansible/plugins/filter/expanduser.yml,sha256=P_AD4oBYbADe2f7pzHjbnkM95t8P1OzN0S3AHLT6C9o,506
|
569
582
|
ansible/plugins/filter/expandvars.yml,sha256=KqtMP_oHLXsKFxHn_3iKX5PPGV5l-yhWX1jPD-sJOeE,569
|
570
583
|
ansible/plugins/filter/extract.yml,sha256=vZ4MJ2bosxriZTCVyMCqBs85XczqRP6rlePT0-bxfU0,1367
|
@@ -626,24 +639,24 @@ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQ
|
|
626
639
|
ansible/plugins/filter/zip.yml,sha256=LEtp9xRWuPjWDHyHdm1rVYbe1k9hdxGToLrNriRgHc4,1352
|
627
640
|
ansible/plugins/filter/zip_longest.yml,sha256=VHaZlibbKoh9F9cxo9Z7EakellHAvJAsliVRS4Mq_co,1256
|
628
641
|
ansible/plugins/httpapi/__init__.py,sha256=k5YFXPK7gug-6LkI5gihNZR5cMY6N1uRKT4wOYRWdOE,3093
|
629
|
-
ansible/plugins/inventory/__init__.py,sha256=
|
642
|
+
ansible/plugins/inventory/__init__.py,sha256=NC9pqzVDJsruh7OipM0n5mFmZL8VG13lGu3L9gVsTg0,21790
|
630
643
|
ansible/plugins/inventory/advanced_host_list.py,sha256=9PlZtS78C7uI7Y-ypfwP2u9scck6hA64TVVAX6Ovs-I,2273
|
631
644
|
ansible/plugins/inventory/auto.py,sha256=bGznhN4RfFLznnth2C4QxCfbVdxzyQsmoT6sp8tneIY,2876
|
632
645
|
ansible/plugins/inventory/constructed.py,sha256=N1oj4IDE6rXqTd3r0yGtuwLNYtuzbBRbhFkG-Jawhig,7353
|
633
646
|
ansible/plugins/inventory/generator.py,sha256=90Zhmt3MK5_Nfz4lL3jjozO0p8eiIlz2WqoyH7ITygI,5824
|
634
647
|
ansible/plugins/inventory/host_list.py,sha256=DZayr155_Izfb5YGvzL7OMyWc-QQwyg04h5eDaFq8P8,2348
|
635
648
|
ansible/plugins/inventory/ini.py,sha256=7kkySGQYkXDISkh2JrK0izI8HfeMnSzD8nY28ZunQok,19358
|
636
|
-
ansible/plugins/inventory/script.py,sha256=
|
649
|
+
ansible/plugins/inventory/script.py,sha256=ryrrUY8xZ5QR9302jEPg2KM8bCSO_btnTcxYs3rlpOU,15184
|
637
650
|
ansible/plugins/inventory/toml.py,sha256=xZnpzVtxtCEZ1aBB0SpAjy2iO0qpL01-QVnCihiCBfQ,5577
|
638
651
|
ansible/plugins/inventory/yaml.py,sha256=Z6ANo6E20DM6Axs1cd6z7jUv5Tur-dHEtRsx0LmGm58,7530
|
639
652
|
ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
|
640
653
|
ansible/plugins/lookup/config.py,sha256=9IHIWhAcflC-Gm-1RVPcIVMmaULYhUbwoKLTBBzqxkA,6186
|
641
|
-
ansible/plugins/lookup/csvfile.py,sha256=
|
654
|
+
ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
|
642
655
|
ansible/plugins/lookup/dict.py,sha256=9LTeK9YZOG4U9l-2gy5Jp1sDqsXRlf4F3WbULV17pjE,2139
|
643
656
|
ansible/plugins/lookup/env.py,sha256=IEMZs0p_rLR4jcfJ-sNqJT8vijnH4-MNyNXM_ttuqJ4,2620
|
644
657
|
ansible/plugins/lookup/file.py,sha256=mHzVVKhShRVeXGBoL4gt_Q-DLBtTf3lCbVSMNrEFy-Q,2924
|
645
658
|
ansible/plugins/lookup/fileglob.py,sha256=FDvmiKVu-wSwzrT4k14qVHOFaORAUFUhkWPvX291J9s,3056
|
646
|
-
ansible/plugins/lookup/first_found.py,sha256
|
659
|
+
ansible/plugins/lookup/first_found.py,sha256=--ILjXtZMffzg5wwK2u8NDX6Aj5GNS2TCJh55NCADd4,11228
|
647
660
|
ansible/plugins/lookup/indexed_items.py,sha256=80giTqR90ncG0a29emYTACmCir4dMY7QBEyQd06HFVw,1306
|
648
661
|
ansible/plugins/lookup/ini.py,sha256=cKJG87FrDzl2n799TMqIQimSkQbme2DSIE5neY0P3Ds,8171
|
649
662
|
ansible/plugins/lookup/inventory_hostnames.py,sha256=JhQkageEIMemrYtxcznt-eUeqxySPJ8xwT37wXdcn0c,1716
|
@@ -663,10 +676,10 @@ ansible/plugins/lookup/url.py,sha256=EzMzJpR3JURFDuZCjpvwK4W8cTkZj_5g5p77t3mKOyM
|
|
663
676
|
ansible/plugins/lookup/varnames.py,sha256=4WKSH-u0ZnQD47r20c5OenaG6Vlamp6nweIZSFOJ0b8,2595
|
664
677
|
ansible/plugins/lookup/vars.py,sha256=gxADVj2vdF_AA612NihSY3HbacczOdr91UqkeaS7xu4,3266
|
665
678
|
ansible/plugins/netconf/__init__.py,sha256=50w1g2rhUo6L-xtiMT20jbR8WyOnhwNSRd2IRNSjNX4,17094
|
666
|
-
ansible/plugins/shell/__init__.py,sha256=
|
679
|
+
ansible/plugins/shell/__init__.py,sha256=yxBEqC2gM7lD6d1BNrzcOWgGbZJnIsvNARcbO83NhE4,10801
|
667
680
|
ansible/plugins/shell/cmd.py,sha256=tH1OZ9RKtNOzOjIJ_XlPcnz0T29LLkIl7X6qlDXZHGA,2170
|
668
|
-
ansible/plugins/shell/powershell.py,sha256=
|
669
|
-
ansible/plugins/shell/sh.py,sha256=
|
681
|
+
ansible/plugins/shell/powershell.py,sha256=2kI7vBkVF7-ko2H4ZYSbaKzGp2w3t1fK0-9-PFioiF8,17896
|
682
|
+
ansible/plugins/shell/sh.py,sha256=ZC4lDg0riSIR9vocRaNboT-E3N-Y1hSuVtiAvDEDUTk,3657
|
670
683
|
ansible/plugins/strategy/__init__.py,sha256=S1rowHRLtNkqQzPnDvpWx7BYdzUGkyIvCgTXorCMbE0,56392
|
671
684
|
ansible/plugins/strategy/debug.py,sha256=LJaaals9GQq82Idq4D39NnJrYZPcZiLcu14GsIb3SI8,1205
|
672
685
|
ansible/plugins/strategy/free.py,sha256=gnH0U1BzBzvU0SuOYgFt7A315XQiIvvgHmxR9cLyxoA,15656
|
@@ -680,7 +693,7 @@ ansible/plugins/test/any.yml,sha256=urB1M9FK_RXOeN8oJLdMfn884pnB6yv1wC1mdA84_vE,
|
|
680
693
|
ansible/plugins/test/change.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
|
681
694
|
ansible/plugins/test/changed.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
|
682
695
|
ansible/plugins/test/contains.yml,sha256=Tb-rCKkGUo4fSpY3lrAlyjJrzN8H0A2Uv1LN_HMPMQg,1288
|
683
|
-
ansible/plugins/test/core.py,sha256=
|
696
|
+
ansible/plugins/test/core.py,sha256=lEfU1zgF1KHp63zCaQriUwUIYp96wxDOIhqSkbZdSws,10970
|
684
697
|
ansible/plugins/test/directory.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
|
685
698
|
ansible/plugins/test/exists.yml,sha256=R8lteO8uYy-XelgK7nK3U_sTUDz0DrTO2BAUr8ltgrM,885
|
686
699
|
ansible/plugins/test/failed.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7erA0,803
|
@@ -688,7 +701,7 @@ ansible/plugins/test/failure.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7e
|
|
688
701
|
ansible/plugins/test/falsy.yml,sha256=SFzc-DA00IVrZ0qhf170YVq9eU14gw67cm7Gp062ns4,801
|
689
702
|
ansible/plugins/test/file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
|
690
703
|
ansible/plugins/test/files.py,sha256=YvdrNZ23EOKIttRBiwThij4sPgbFvgOvgc2Uw9RiMM4,1407
|
691
|
-
ansible/plugins/test/finished.yml,sha256=
|
704
|
+
ansible/plugins/test/finished.yml,sha256=tJ5NDBpiuk-VVq0-Q1CHVi4vI0eZjzT9o43iU5HJvgo,702
|
692
705
|
ansible/plugins/test/is_abs.yml,sha256=lZA0XP1oBNg___Du6SqNOkDeQC9xIcZpROYV5XJG9bg,764
|
693
706
|
ansible/plugins/test/is_dir.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
|
694
707
|
ansible/plugins/test/is_file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
|
@@ -719,7 +732,7 @@ ansible/plugins/test/superset.yml,sha256=KcPyWv-MqREe_hgKdilPJjOJ1O7hGgHLLZEfvEg
|
|
719
732
|
ansible/plugins/test/timedout.yml,sha256=w-QWRd_nJqY9oE4ypd6Eyi4oc12ngIDZJBICBvWossU,594
|
720
733
|
ansible/plugins/test/truthy.yml,sha256=Flgl3QawsSbBYK24d1ciSSmrUCJwnWRdt8YIOI9uyLw,810
|
721
734
|
ansible/plugins/test/unreachable.yml,sha256=KCrtQULh4YZ3iOZiE0-_SGCCpqnjIDf3n5Go5w5d58k,695
|
722
|
-
ansible/plugins/test/uri.py,sha256=
|
735
|
+
ansible/plugins/test/uri.py,sha256=j1WZU7eCfNEu3m2udzVTP8nIbJ6TFsG3DmO62FIosM4,965
|
723
736
|
ansible/plugins/test/uri.yml,sha256=jqb-Ppm-uQfOh-XgTm6iW8dxW1s2NvFpHBsPBsWEMzM,1115
|
724
737
|
ansible/plugins/test/url.yml,sha256=XelZ7TQrt8b2xOMaJh1FHt93vTFZp_B3k8lqVap9MSU,934
|
725
738
|
ansible/plugins/test/urn.yml,sha256=yA58wCfvnD4MlWIHAkR_VaxZ9-FRKhGUncl_KF_8Uh0,576
|
@@ -729,50 +742,55 @@ ansible/plugins/test/version.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3m
|
|
729
742
|
ansible/plugins/test/version_compare.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3ma38,3283
|
730
743
|
ansible/plugins/vars/__init__.py,sha256=D3YwVKABesBwag9e7GsLOxlRWqEO5NgfHDmYSq0z_1k,1331
|
731
744
|
ansible/plugins/vars/host_group_vars.py,sha256=II1322kBCCMbBtLL31AydKJ6pmjDZNr5ab6fI7rWNXU,5921
|
732
|
-
ansible/template/__init__.py,sha256=
|
745
|
+
ansible/template/__init__.py,sha256=bTv0ipZhZUmwd7L18rdTK6n3ow6WHdc8e5XKbsSKL5E,18947
|
733
746
|
ansible/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
734
747
|
ansible/utils/_junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx2ERXwM,8671
|
735
|
-
ansible/utils/_ssh_agent.py,sha256=2WlQqytGHoSkASLBscMfBOv69QAV0YNuBfKak4dh0nk,21277
|
736
748
|
ansible/utils/cmd_functions.py,sha256=VmGs5ntdVaaqAJHcCTpGG3rYAAcTNl1b2-Iw4YVOt9Y,2180
|
737
749
|
ansible/utils/color.py,sha256=LjJO_12OsJiavBxwSDVXtLxdTzdwd2YWUp1OJ6KcM2g,4057
|
738
750
|
ansible/utils/context_objects.py,sha256=vYulSJkzR3zxsQF_6_AqbPCCMy8WGC5dSqLFXJZqGIo,3034
|
739
|
-
ansible/utils/display.py,sha256=
|
751
|
+
ansible/utils/display.py,sha256=wcL8lPGqziDb9scHE1VxoZi3-iTHKQu3aDkxsbuILN8,48781
|
740
752
|
ansible/utils/encrypt.py,sha256=j7DcEPr_yHSLYfYEruybjCl7kFk4rKjjTebyGx_-ZbA,7590
|
741
753
|
ansible/utils/fqcn.py,sha256=_wPNWMkR0mqRdkr6fn9FRgEkaCQHw40yardWe97FfEc,1215
|
742
754
|
ansible/utils/galaxy.py,sha256=Un3XgXhx8FoC6tkp1cZ33rmiAaRg634exKruwOVhtdQ,3855
|
743
|
-
ansible/utils/hashing.py,sha256=
|
755
|
+
ansible/utils/hashing.py,sha256=y6bQHStwmeHayqIH0LeAgKDe7EDnaj2cY-T4B1qeFIM,2749
|
744
756
|
ansible/utils/helpers.py,sha256=b4O4RGswsQR_lbcfQsOXpw7AqaXt92nyUvb2PEDeFWQ,1759
|
745
757
|
ansible/utils/jsonrpc.py,sha256=NyVItx9-ppCCsnn856VGoeSeRdu--e8ieZ6WzrD-4CI,3806
|
746
|
-
ansible/utils/listify.py,sha256=
|
758
|
+
ansible/utils/listify.py,sha256=QCi-jvTaklqvHpK0CKuH_mhk5E91Lh-_UjmjGdqYunE,1545
|
747
759
|
ansible/utils/lock.py,sha256=aP6MfrvWHdO_V756hwFsJG1I9QaQyFJq9W0tf7pCN3I,1306
|
748
760
|
ansible/utils/multiprocessing.py,sha256=Xgs3kXqbzVujXah0-R_D6eUcQoiapbQ-0yclNpkAvs4,614
|
749
761
|
ansible/utils/path.py,sha256=RMuCOlqUyDjIlKTAqNhD2N7iuKkL4jnvXNWh9aMtQRw,6051
|
750
|
-
ansible/utils/plugin_docs.py,sha256=
|
762
|
+
ansible/utils/plugin_docs.py,sha256=A1Fy5qaZuOnrEm896AdHi3znJkVMFveu4C0MQujSBpE,15383
|
751
763
|
ansible/utils/py3compat.py,sha256=l5x0He1q4RRPwSummCN8wHhD8PxlivcgfthllyI_XCg,578
|
752
764
|
ansible/utils/sentinel.py,sha256=3TBjBlaOB6NfoXt5MFLCHVQLbPIFx03N_glcN3cYdjo,323
|
753
765
|
ansible/utils/shlex.py,sha256=eUCZ0VkxMSEoyXCDspS9E4cI8pQWn83OFCt7sbVLB6g,841
|
754
766
|
ansible/utils/singleton.py,sha256=6nYKQz0zmslyaOvbzCSG0Eud1eIgsQiSPZ1DyY7tXtc,1024
|
755
767
|
ansible/utils/ssh_functions.py,sha256=cwLETKrXhcdaqYlwuvUdQRv9CZKdnLt5trk9VMVrJO4,2268
|
756
768
|
ansible/utils/unicode.py,sha256=__zbdElrMS9Rrqo9H7tF8zkjKFQCFU8kTtj5cVIITxM,1100
|
757
|
-
ansible/utils/unsafe_proxy.py,sha256=
|
769
|
+
ansible/utils/unsafe_proxy.py,sha256=KvL4YeKk3cjxVDTcK9-ijBUneJDOMRngqLOTITFABPE,2107
|
758
770
|
ansible/utils/vars.py,sha256=RhZssst9c2fRWvlT6YgDW3v45mmea3x1KLucyzKUsE8,11443
|
759
771
|
ansible/utils/version.py,sha256=TKmSzm_MFZVJWpvmOnIEGZzRfeHLwWmeuHj16zGqb2c,7736
|
760
|
-
ansible/utils/collection_loader/__init__.py,sha256=
|
772
|
+
ansible/utils/collection_loader/__init__.py,sha256=lwLu1LJhWz3cRzFLfNWuFdS-Rhods6aReqOaqoVaDaM,2564
|
761
773
|
ansible/utils/collection_loader/_collection_config.py,sha256=6r5DY_4kKGQz4qk7u9vsrNq__UmGFlCjtAV-HwJsFaM,3000
|
762
774
|
ansible/utils/collection_loader/_collection_finder.py,sha256=3E71MX6FU2OmBeK5BpJrh7lQ4Fg6kuiRMA4WxuO3JqY,55125
|
763
775
|
ansible/utils/collection_loader/_collection_meta.py,sha256=p2eZArsO8RCl4PlN1x2I-7A7Q8HZpdFoeqfMNVaRgiU,1815
|
764
776
|
ansible/vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
765
777
|
ansible/vars/clean.py,sha256=Y9F3gyB1swxNVixpMOMGpG0kVRFAD2OHZLn93WPKgso,6016
|
766
|
-
ansible/vars/hostvars.py,sha256=
|
778
|
+
ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
|
767
779
|
ansible/vars/manager.py,sha256=pCLAvO_J_IQPBPPnOb6JHhU5t2dTXUYpj3D3eMxmJKw,28041
|
768
780
|
ansible/vars/plugins.py,sha256=Qnk83j898hQ-oiJHaKsel177tkYLwm6cCoHed4GPoiA,4519
|
769
781
|
ansible/vars/reserved.py,sha256=r7qXzXJ5uZdkRYjmyf3uSxU6EHnOVLEiMMnwOM7Q46U,2771
|
782
|
+
ansible_core-2.19.0b5.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
783
|
+
ansible_core-2.19.0b5.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
784
|
+
ansible_core-2.19.0b5.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
|
785
|
+
ansible_core-2.19.0b5.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
|
786
|
+
ansible_core-2.19.0b5.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
787
|
+
ansible_core-2.19.0b5.dist-info/licenses/licenses/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
|
770
788
|
ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
|
771
789
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
772
790
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
773
|
-
ansible_test/_data/completion/docker.txt,sha256=
|
791
|
+
ansible_test/_data/completion/docker.txt,sha256=ZIZh6j5AlB5A3Dj1rPErwAIa2qJGa2a3LbpqaqGX98c,663
|
774
792
|
ansible_test/_data/completion/network.txt,sha256=BxVN0UxlVkRUrPi9MBArQOe6nR8exaow0oCAznUdfKQ,100
|
775
|
-
ansible_test/_data/completion/remote.txt,sha256=
|
793
|
+
ansible_test/_data/completion/remote.txt,sha256=cFj6aW8cKbRbJDYLPkQhh3347mBPyHtgOnk34UrqTgU,972
|
776
794
|
ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
|
777
795
|
ansible_test/_data/playbooks/posix_coverage_setup.yml,sha256=PgQNVzVTsNmfnu0sT2SAYiWtkMSOppfmh0oVmAsb7TQ,594
|
778
796
|
ansible_test/_data/playbooks/posix_coverage_teardown.yml,sha256=xHci5QllwJymFtig-hsOXm-Wdrxz063JH14aIyRXhyc,212
|
@@ -792,9 +810,9 @@ ansible_test/_data/requirements/ansible-test.txt,sha256=3W9TclOM-HcT6VmlhHqyeRIj
|
|
792
810
|
ansible_test/_data/requirements/ansible.txt,sha256=YC7zdpWV7J-L78x1dQi_BdZwY9zPx870ckRkcn7aQtY,884
|
793
811
|
ansible_test/_data/requirements/constraints.txt,sha256=vPTuYu3DeJoE3q9bPj5l3mGef8m0vWyyVgZ8QRuWJ2g,819
|
794
812
|
ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
|
795
|
-
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=
|
813
|
+
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=xKSbhHRwGc4O04RUJKZIWHVs5qpUS5UOgjhhdplGlL8,169
|
796
814
|
ansible_test/_data/requirements/sanity.changelog.in,sha256=A0-S4lrfGxwfnbBNyA8IZ2slFrmHB70MZYVIQo6ogZE,135
|
797
|
-
ansible_test/_data/requirements/sanity.changelog.txt,sha256=
|
815
|
+
ansible_test/_data/requirements/sanity.changelog.txt,sha256=cQetCVzZfqPNj0uyzCHi9j2Ol4pgYJTWIKlQaRS_Teo,268
|
798
816
|
ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
|
799
817
|
ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
|
800
818
|
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=XP-A1yZQaohuDbjhs_EBn7tEc3_lFg2gAhIz-WgsgB8,157
|
@@ -802,16 +820,16 @@ ansible_test/_data/requirements/sanity.import.txt,sha256=pQHaQf9Y7Kya41ETF04WGVm
|
|
802
820
|
ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
|
803
821
|
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=ABpuHH_wjTdun2UK0EjJKW3XGH1WNEw0o1ku5TDqjrc,137
|
804
822
|
ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
|
805
|
-
ansible_test/_data/requirements/sanity.pep8.txt,sha256=
|
823
|
+
ansible_test/_data/requirements/sanity.pep8.txt,sha256=Jq9LB_K2XuCY__zXeVF6Yr7UVc26wzgU_dLyGOh7sPs,113
|
806
824
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
|
807
825
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
|
808
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
826
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=toL12F-SBIwpxt3r528dMoBjoVBcXHiqsuZGtLVWDFU,216
|
809
827
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
810
828
|
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=ZTrFKxqX5TCmxWv-jXBz1S0RpOOfIyGmUsNNA9AdQ9A,150
|
811
829
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
|
812
830
|
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=wTbvLDeyTQrRAvAE6rqF5PWY0XPviBWGm_UyG_ER7Uo,211
|
813
831
|
ansible_test/_data/requirements/sanity.yamllint.in,sha256=qtd2lDJ0A39NOP8OpnLX9Rdf_dn_89jh2XCjmmvTgHs,16
|
814
|
-
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=
|
832
|
+
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=t8qTcbMO9Gi4nSoFq7xzriQs8ZHYQmZ1IRI8DtGFaCo,149
|
815
833
|
ansible_test/_data/requirements/units.txt,sha256=C6f8bZXbZCzpryYQiqlbX6fp_mrLBo3OiNh9025pBxE,228
|
816
834
|
ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
|
817
835
|
ansible_test/_internal/__init__.py,sha256=fiVNUc1Zf6pGY998sRGb_bbR8kt6m4r25UNYJwZpukE,3157
|
@@ -853,7 +871,7 @@ ansible_test/_internal/target.py,sha256=fm1L90VKHOjG3IVfGFKLHBH1LPavDgEu5DAHp08Y
|
|
853
871
|
ansible_test/_internal/test.py,sha256=q17SmItAsiBWrSilDBZFSEBugv9QNsG5HzFOAFXcyh4,14516
|
854
872
|
ansible_test/_internal/thread.py,sha256=eKmxnhy0811ZHjICxO7Q6RwxQcv0NpJTPs5EOrvjJDA,2597
|
855
873
|
ansible_test/_internal/timeout.py,sha256=OlOzpe_WmKofexL2gxnKXGoIQuOO-7bbPTmi7seOUcs,4053
|
856
|
-
ansible_test/_internal/util.py,sha256=
|
874
|
+
ansible_test/_internal/util.py,sha256=cEmVv84c4cbRuEn9jFgzw9z1yWybyrQnzRFfzUK2iBk,39486
|
857
875
|
ansible_test/_internal/util_common.py,sha256=b9y_gCtlERbE7jqCoQ4Eobjwf7BQ1sv8yfZIDAbKQ5Y,17553
|
858
876
|
ansible_test/_internal/venv.py,sha256=eb5RfjapntulFMTIQieyx8QdHo2LJfjgZY_wx3_htMw,5522
|
859
877
|
ansible_test/_internal/ci/__init__.py,sha256=sZNgkICN4RRFy4Nn-ZB6dCm6Ui9d_xIrrjgaIzZ_VyI,7739
|
@@ -1005,12 +1023,12 @@ ansible_test/_util/controller/sanity/integration-aliases/yaml_to_json.py,sha256=
|
|
1005
1023
|
ansible_test/_util/controller/sanity/pep8/current-ignore.txt,sha256=dpV9GzTy9R-crhVF5Kzllg_sXTCjeGEfUAoxJw79Nw4,310
|
1006
1024
|
ansible_test/_util/controller/sanity/pslint/pslint.ps1,sha256=h0fLdkwF7JhGGjApvqAsCU87BKy0E_UiFJ_O7MARz6U,1089
|
1007
1025
|
ansible_test/_util/controller/sanity/pslint/settings.psd1,sha256=QJnOH39HTVkJbPhhVo29olmQ_ftvzYpNa8uQ-figgws,1869
|
1008
|
-
ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg,sha256=
|
1009
|
-
ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=
|
1010
|
-
ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=
|
1011
|
-
ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=
|
1012
|
-
ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=
|
1013
|
-
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=
|
1026
|
+
ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg,sha256=7mL35gGJijKGUQLhMCP6SEPA6R1-DQ8pKdMgjV6Nnb8,2226
|
1027
|
+
ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=TfiS1qpa067_H2FbKdTG-xJwxdQ3hV4K7jAT73Af-Q0,2290
|
1028
|
+
ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=jJ1K5-7XP-SLu6cJaZjDSNrJt7SRxwLDhSBWotw9g5Y,2062
|
1029
|
+
ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=MrPjqou7RMmSBmai8epIbSCLbYkZ0yyxFcadowXrPs8,4789
|
1030
|
+
ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=PHGUd-3F3tkj-Ie8HPFlF2kg3R9F5z92Ric9icrLJs0,4363
|
1031
|
+
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=Tu6mjKhbZiVhHJ-u1vixLxi3rtuSII6avT_NcZ_B6gw,21809
|
1014
1032
|
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
|
1015
1033
|
ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
|
1016
1034
|
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=Mb1Mx8WS4RulsORFgyctlFRR0Sn-PYPy4mVu_GYCD18,2359
|
@@ -1040,7 +1058,7 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=6u
|
|
1040
1058
|
ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=n5ZrjY_feIK5auGcx21aYP03BQE6Ptu9RrXFAKAJcfE,1999
|
1041
1059
|
ansible_test/_util/target/sanity/compile/compile.py,sha256=w6FO6aI4wiVb4DYNchthqCOrjwWRFmcaEKdM6_s1Vug,1303
|
1042
1060
|
ansible_test/_util/target/sanity/import/importer.py,sha256=mwF8tFHR_m-jFpgPy-KEewOsoDiHD9u6dv8GbO6puFM,24699
|
1043
|
-
ansible_test/_util/target/setup/bootstrap.sh,sha256=
|
1061
|
+
ansible_test/_util/target/setup/bootstrap.sh,sha256=LVGyk4jlF9oGaUdExCvo4I_yRiD3XXGx56BHPreWvYk,12591
|
1044
1062
|
ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
|
1045
1063
|
ansible_test/_util/target/setup/probe_cgroups.py,sha256=wloSlXxgaQeE9cdpc3Bw3BvE8LktkiE9vq_DpI-cGrY,660
|
1046
1064
|
ansible_test/_util/target/setup/quiet_pip.py,sha256=LiyNCcZpXfLlWOTDndOSeXLX5hk2ukCObOn9GbuxEic,1980
|
@@ -1061,14 +1079,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
|
|
1061
1079
|
ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
|
1062
1080
|
ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
|
1063
1081
|
ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
|
1064
|
-
ansible_core-2.19.
|
1065
|
-
ansible_core-2.19.
|
1066
|
-
ansible_core-2.19.
|
1067
|
-
ansible_core-2.19.
|
1068
|
-
ansible_core-2.19.
|
1069
|
-
ansible_core-2.19.0b3.dist-info/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
1070
|
-
ansible_core-2.19.0b3.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
1071
|
-
ansible_core-2.19.0b3.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
1072
|
-
ansible_core-2.19.0b3.dist-info/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
|
1073
|
-
ansible_core-2.19.0b3.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
1074
|
-
ansible_core-2.19.0b3.dist-info/RECORD,,
|
1082
|
+
ansible_core-2.19.0b5.dist-info/METADATA,sha256=i1UYT20v4f0_70-jeYaKFbArXv1QUYSZ2DQiMURLIRI,7732
|
1083
|
+
ansible_core-2.19.0b5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
1084
|
+
ansible_core-2.19.0b5.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
1085
|
+
ansible_core-2.19.0b5.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
1086
|
+
ansible_core-2.19.0b5.dist-info/RECORD,,
|