ansible-core 2.19.0b4__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.
Files changed (163) hide show
  1. ansible/_internal/__init__.py +1 -1
  2. ansible/_internal/_collection_proxy.py +1 -1
  3. ansible/_internal/_errors/_alarm_timeout.py +66 -0
  4. ansible/_internal/_errors/_captured.py +25 -30
  5. ansible/_internal/_errors/_error_factory.py +89 -0
  6. ansible/_internal/_errors/_error_utils.py +240 -0
  7. ansible/_internal/_errors/_task_timeout.py +28 -0
  8. ansible/_internal/_event_formatting.py +127 -0
  9. ansible/_internal/_json/__init__.py +5 -5
  10. ansible/_internal/_json/_profiles/_cache_persistence.py +2 -0
  11. ansible/_internal/_json/_profiles/_inventory_legacy.py +1 -1
  12. ansible/_internal/_json/_profiles/_legacy.py +3 -11
  13. ansible/_internal/_ssh/__init__.py +0 -0
  14. ansible/_internal/_ssh/_agent_launch.py +91 -0
  15. ansible/{utils → _internal/_ssh}/_ssh_agent.py +55 -93
  16. ansible/_internal/_templating/__init__.py +5 -3
  17. ansible/_internal/_templating/_datatag.py +2 -1
  18. ansible/_internal/_templating/_engine.py +3 -4
  19. ansible/_internal/_templating/_jinja_bits.py +21 -16
  20. ansible/_internal/_templating/_jinja_common.py +18 -27
  21. ansible/_internal/_templating/_jinja_plugins.py +31 -3
  22. ansible/_internal/_templating/_lazy_containers.py +5 -5
  23. ansible/_internal/_templating/_transform.py +20 -19
  24. ansible/_internal/_templating/_utils.py +1 -1
  25. ansible/_internal/_yaml/_dumper.py +1 -1
  26. ansible/_internal/_yaml/_errors.py +7 -7
  27. ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py +1 -1
  28. ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py +1 -1
  29. ansible/cli/__init__.py +5 -82
  30. ansible/cli/arguments/option_helpers.py +2 -3
  31. ansible/cli/doc.py +84 -28
  32. ansible/cli/inventory.py +1 -1
  33. ansible/compat/importlib_resources.py +9 -12
  34. ansible/config/base.yml +22 -0
  35. ansible/errors/__init__.py +96 -49
  36. ansible/executor/module_common.py +8 -10
  37. ansible/executor/powershell/async_watchdog.ps1 +2 -2
  38. ansible/executor/powershell/async_wrapper.ps1 +3 -3
  39. ansible/executor/powershell/become_wrapper.ps1 +20 -2
  40. ansible/executor/powershell/bootstrap_wrapper.ps1 +28 -6
  41. ansible/executor/powershell/coverage_wrapper.ps1 +15 -6
  42. ansible/executor/powershell/exec_wrapper.ps1 +219 -6
  43. ansible/executor/powershell/module_manifest.py +52 -0
  44. ansible/executor/powershell/module_wrapper.ps1 +47 -21
  45. ansible/executor/powershell/powershell_expand_user.ps1 +20 -0
  46. ansible/executor/powershell/powershell_mkdtemp.ps1 +17 -0
  47. ansible/executor/process/worker.py +38 -113
  48. ansible/executor/task_executor.py +26 -61
  49. ansible/executor/task_result.py +2 -4
  50. ansible/galaxy/collection/__init__.py +1 -4
  51. ansible/inventory/manager.py +1 -1
  52. ansible/module_utils/_internal/__init__.py +0 -3
  53. ansible/module_utils/_internal/_ambient_context.py +3 -3
  54. ansible/module_utils/_internal/_ansiballz.py +4 -2
  55. ansible/module_utils/_internal/_datatag/__init__.py +20 -14
  56. ansible/module_utils/_internal/_datatag/_tags.py +2 -2
  57. ansible/module_utils/_internal/_deprecator.py +66 -48
  58. ansible/module_utils/_internal/_errors.py +88 -17
  59. ansible/module_utils/_internal/_event_utils.py +61 -0
  60. ansible/module_utils/_internal/_json/_profiles/__init__.py +21 -4
  61. ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py +2 -0
  62. ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py +2 -0
  63. ansible/module_utils/_internal/_json/_profiles/_tagless.py +3 -1
  64. ansible/module_utils/{common/messages.py → _internal/_messages.py} +28 -47
  65. ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py +1 -3
  66. ansible/module_utils/_internal/_plugin_info.py +1 -1
  67. ansible/module_utils/_internal/_stack.py +22 -0
  68. ansible/module_utils/_internal/_text_utils.py +6 -0
  69. ansible/module_utils/_internal/_traceback.py +11 -8
  70. ansible/module_utils/ansible_release.py +1 -1
  71. ansible/module_utils/basic.py +49 -15
  72. ansible/module_utils/common/arg_spec.py +2 -2
  73. ansible/module_utils/common/collections.py +6 -0
  74. ansible/module_utils/common/json.py +2 -2
  75. ansible/module_utils/common/text/converters.py +3 -3
  76. ansible/module_utils/common/validation.py +1 -1
  77. ansible/module_utils/common/warnings.py +80 -23
  78. ansible/module_utils/common/yaml.py +1 -1
  79. ansible/module_utils/datatag.py +5 -2
  80. ansible/module_utils/facts/system/distribution.py +16 -3
  81. ansible/module_utils/facts/virtual/linux.py +1 -1
  82. ansible/module_utils/service.py +2 -9
  83. ansible/modules/apt_repository.py +7 -29
  84. ansible/modules/async_status.py +13 -11
  85. ansible/modules/async_wrapper.py +5 -5
  86. ansible/modules/dnf5.py +14 -22
  87. ansible/modules/hostname.py +0 -1
  88. ansible/modules/service.py +3 -9
  89. ansible/parsing/ajson.py +3 -5
  90. ansible/parsing/dataloader.py +4 -4
  91. ansible/parsing/mod_args.py +1 -1
  92. ansible/parsing/plugin_docs.py +2 -2
  93. ansible/parsing/utils/yaml.py +3 -3
  94. ansible/parsing/vault/__init__.py +4 -4
  95. ansible/playbook/playbook_include.py +1 -1
  96. ansible/playbook/taggable.py +0 -3
  97. ansible/plugins/__init__.py +0 -25
  98. ansible/plugins/action/__init__.py +8 -31
  99. ansible/plugins/action/add_host.py +1 -1
  100. ansible/plugins/action/assemble.py +8 -16
  101. ansible/plugins/action/async_status.py +7 -2
  102. ansible/plugins/action/copy.py +8 -7
  103. ansible/plugins/action/gather_facts.py +8 -8
  104. ansible/plugins/action/package.py +5 -8
  105. ansible/plugins/action/script.py +8 -15
  106. ansible/plugins/action/service.py +3 -7
  107. ansible/plugins/action/template.py +3 -8
  108. ansible/plugins/action/unarchive.py +5 -15
  109. ansible/plugins/action/uri.py +9 -20
  110. ansible/plugins/callback/__init__.py +4 -6
  111. ansible/plugins/callback/junit.py +4 -2
  112. ansible/plugins/connection/local.py +2 -2
  113. ansible/plugins/connection/ssh.py +17 -9
  114. ansible/plugins/connection/winrm.py +5 -2
  115. ansible/plugins/doc_fragments/constructed.py +2 -2
  116. ansible/plugins/filter/core.py +13 -6
  117. ansible/plugins/filter/encryption.py +4 -4
  118. ansible/plugins/inventory/__init__.py +11 -10
  119. ansible/plugins/inventory/script.py +1 -1
  120. ansible/plugins/list.py +69 -16
  121. ansible/plugins/loader.py +7 -7
  122. ansible/plugins/lookup/csvfile.py +16 -71
  123. ansible/plugins/lookup/first_found.py +2 -1
  124. ansible/plugins/shell/__init__.py +56 -2
  125. ansible/plugins/shell/powershell.py +66 -9
  126. ansible/plugins/shell/sh.py +9 -5
  127. ansible/plugins/test/core.py +21 -15
  128. ansible/plugins/test/finished.yml +1 -1
  129. ansible/plugins/test/uri.py +2 -5
  130. ansible/release.py +1 -1
  131. ansible/template/__init__.py +30 -2
  132. ansible/utils/display.py +103 -128
  133. ansible/utils/hashing.py +0 -1
  134. ansible/utils/listify.py +6 -4
  135. ansible/utils/unsafe_proxy.py +1 -1
  136. ansible/vars/hostvars.py +1 -1
  137. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/METADATA +1 -1
  138. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/RECORD +162 -151
  139. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/WHEEL +1 -1
  140. ansible_test/_data/completion/docker.txt +3 -3
  141. ansible_test/_data/completion/remote.txt +1 -0
  142. ansible_test/_data/requirements/sanity.ansible-doc.txt +1 -1
  143. ansible_test/_data/requirements/sanity.changelog.txt +2 -2
  144. ansible_test/_data/requirements/sanity.pep8.txt +1 -1
  145. ansible_test/_data/requirements/sanity.pylint.txt +4 -4
  146. ansible_test/_data/requirements/sanity.yamllint.txt +1 -1
  147. ansible_test/_internal/util.py +20 -0
  148. ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg +1 -0
  149. ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg +1 -0
  150. ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg +1 -0
  151. ansible_test/_util/controller/sanity/pylint/config/collection.cfg +1 -0
  152. ansible_test/_util/controller/sanity/pylint/config/default.cfg +1 -0
  153. ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +61 -7
  154. ansible_test/_util/target/setup/bootstrap.sh +31 -0
  155. ansible/_internal/_errors/_utils.py +0 -310
  156. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/entry_points.txt +0 -0
  157. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/COPYING +0 -0
  158. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/licenses/Apache-License.txt +0 -0
  159. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
  160. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/licenses/MIT-license.txt +0 -0
  161. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/licenses/PSF-license.txt +0 -0
  162. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
  163. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b5.dist-info}/top_level.txt +0 -0
@@ -3,10 +3,11 @@ ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
3
3
  ansible/constants.py,sha256=qef45QpHi-yFFMvllvNKmqFpXdKKr304e5fEZnjgwZc,7989
4
4
  ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
5
5
  ansible/keyword_desc.yml,sha256=5rGCsr-0B8w2D67qBD6q_2WFxfqj9ieb0V_2J-dZJ5E,7547
6
- ansible/release.py,sha256=IXr3OR35RyOVLr9l3eiSI-Lq37a-X2gZPSBHSI-O6r8,854
7
- ansible/_internal/__init__.py,sha256=D-vFgPGHLjzG97IvyIoyhJu5Hycp6R8LWbm5_9XYfSc,2209
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=F7sde4HIxwZVszF1bYkbcNvNsy233rAEjn2OV5ENx90,1235
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
12
13
  ansible/_internal/_testing.py,sha256=WCEwZk8_NP2f2LoY2zjh6VIw6d8bPoFspvfP3-KQMjQ,825
@@ -16,35 +17,41 @@ ansible/_internal/_datatag/_tags.py,sha256=8ZLQUX2ggTQluwtLfFbNKa9rKNpxRhqalRzeq
16
17
  ansible/_internal/_datatag/_utils.py,sha256=YCtUuzsEuu-m_WuDky8JKvbp432xJ7S-UJQPqeY5Ckk,782
17
18
  ansible/_internal/_datatag/_wrappers.py,sha256=MNF_vK0Ib03U56T5W0sFbshV6RlV1gfuN6YhpVxVAIg,1137
18
19
  ansible/_internal/_errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- ansible/_internal/_errors/_captured.py,sha256=UXIzFiUMZVAGYlrc2dBJDmRYYDLgj6zOOSaLth7Br5Q,4919
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
20
24
  ansible/_internal/_errors/_handler.py,sha256=4ZX27G_jrDsomR28OVC0A9WRponpte5V-QGq5ZcDzeE,3455
21
- ansible/_internal/_errors/_utils.py,sha256=LKS9CRb8OobJTlLjs0poHiVqmzIdLB7BIW3m3fzLFbQ,11942
22
- ansible/_internal/_json/__init__.py,sha256=nYxJrXf9eqa0-ECe6cdEJBgNF9TUX3YJKsazFbtn17s,8825
25
+ ansible/_internal/_errors/_task_timeout.py,sha256=CN5J2eKa42cyahXC0IMrliwQAF7DMwNvdaJmzSqPBsk,923
26
+ ansible/_internal/_json/__init__.py,sha256=X5QL0n8wbgR93jx3TPuQRd_MIfvzASO8ekzTmCRBqac,8796
23
27
  ansible/_internal/_json/_legacy_encoder.py,sha256=clXiPnJ2aR5McuSbajugTPW2wav1wwklivxDKWZ1iFw,1646
24
28
  ansible/_internal/_json/_profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=PGtAPvMQdC6yHJcHz3HYkkmRMH8SkE4nOjhIg3SMdRA,1817
26
- ansible/_internal/_json/_profiles/_inventory_legacy.py,sha256=Ni04UumOesrsq29l4L96LD0pxYZM2u2NVBzCxQ2BuoE,1090
27
- ansible/_internal/_json/_profiles/_legacy.py,sha256=89MjLp4Tw7eBoTIw8GuRdWQcBMaqbNbW0Mjf18LYrjA,7897
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
28
32
  ansible/_internal/_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
33
  ansible/_internal/_plugins/_cache.py,sha256=jwVeVm-ZJJaNqdyq7aS4Zt41C6VKyRO_DdwXaVBXWGc,1989
30
- ansible/_internal/_templating/__init__.py,sha256=ABL3nrJpUrYWkU7ZDLPPU0ReEx8GubISi73iaEmfS0k,477
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
31
38
  ansible/_internal/_templating/_access.py,sha256=dse4dr0TRpZdRbZLfg0VJ7wigNm2iS4DA-JEK6LoTLc,3467
32
39
  ansible/_internal/_templating/_chain_templar.py,sha256=VArYtkVpa0mZY2AhSL_Re2McPxM_lcgZupcDNwb4wB8,2256
33
- ansible/_internal/_templating/_datatag.py,sha256=QmDU9CBaiGxT5IBtWmpiQpLnHB4YeLP8I_ow9kgf58g,3831
34
- ansible/_internal/_templating/_engine.py,sha256=MGdLke5PypD4kZ96VvwAdfAPGdxzq0OW0DutTIvCj1c,28223
40
+ ansible/_internal/_templating/_datatag.py,sha256=HuOaYtpmXYZkTDVVVz5lO3E6trowAIp80P2BN-UTyHs,3903
41
+ ansible/_internal/_templating/_engine.py,sha256=1-674lL9t4B0t93Ny0a9ZklU4bNkFefzNCAhNiFTOew,28155
35
42
  ansible/_internal/_templating/_errors.py,sha256=3dxLGu1NLft-9GDuNKNc1K4OIDaduAzFYkNOYBNAYCI,1302
36
- ansible/_internal/_templating/_jinja_bits.py,sha256=JWw3WLickQ9daAAf6F_9h6CMZPW2PxIbFmLiDx3Va1A,47181
37
- ansible/_internal/_templating/_jinja_common.py,sha256=hJYrV2cKQh5zj6u3Mkr-XWnaRWSU5sDzDN1zQ3UBZA0,12315
43
+ ansible/_internal/_templating/_jinja_bits.py,sha256=v0V2V4a3CBRGNPIa2_hoot9LEziUmE919WzxFlrsd4w,47307
44
+ ansible/_internal/_templating/_jinja_common.py,sha256=wTTLtFmVDy5as1DK_94BmVUrvz46BhJDlICFy3qUMmY,11760
38
45
  ansible/_internal/_templating/_jinja_patches.py,sha256=O_1GHYLEYtu1f2g0iSb3GDBrQMk1Qbh43H4CUEP9wcE,1412
39
- ansible/_internal/_templating/_jinja_plugins.py,sha256=oeR_jU2VdplZ5uzio2Gn5fM4LmqC0fn2l1ztUDPnG9Q,15160
40
- ansible/_internal/_templating/_lazy_containers.py,sha256=Yjc4qr1XjyOMCB2PR2U2qekbENvL_X68BBdyw26L_z4,27168
46
+ ansible/_internal/_templating/_jinja_plugins.py,sha256=oZCNkxoIYwb8l0ymc0BDL5xfTEE8IcH08kDA4xXQ-zw,16060
47
+ ansible/_internal/_templating/_lazy_containers.py,sha256=dq7jPLtHJ42mNarYmROc2GES3IFQB2X-eIxp6HQtj5M,27159
41
48
  ansible/_internal/_templating/_marker_behaviors.py,sha256=EPQwotuBRagad5k9rGALlfCSV-CbNGXY6oA-DPp6dJ4,3439
42
- ansible/_internal/_templating/_transform.py,sha256=UtyZhhcfMSLCz5WghfgUqcSgJtyVy2Xr05LOpYGK3r0,2495
43
- ansible/_internal/_templating/_utils.py,sha256=iv8aFJPb1IMHQ299aqQkYodoeZY_sZqDB_x7fbRYres,3718
49
+ ansible/_internal/_templating/_transform.py,sha256=-_gYpMn9IFQiadtC7_hiWsydNaZo0oQi7K5D_OSrPX4,2589
50
+ ansible/_internal/_templating/_utils.py,sha256=7DYmkWZ4kInyeoLjLne9DR1LmOzDg_Dz0x3HkB6oxWE,3711
44
51
  ansible/_internal/_yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
52
  ansible/_internal/_yaml/_constructor.py,sha256=bTzjXIQBy60hpaRIMyVclxgVatyvFXd-xiYgJY_NkIU,9766
46
- ansible/_internal/_yaml/_dumper.py,sha256=Qcpi2Ndg-JixZrOoJKq9hCfxz4D3aIKqswU3EIRZoLs,2518
47
- ansible/_internal/_yaml/_errors.py,sha256=WA0UPzWftdqkzYTM8G9Rpb61kbwwSKew-h5KIA36sXU,7755
53
+ ansible/_internal/_yaml/_dumper.py,sha256=9pDuDepqe1IwWpz7uG3u4K1fwpYHrL6RF_rejRyRpw8,2511
54
+ ansible/_internal/_yaml/_errors.py,sha256=qx0ViQbUdG9jnac3JOir2ZfT9B_-N7KJY-hZvPw9EHY,7797
48
55
  ansible/_internal/_yaml/_loader.py,sha256=h6pGkmFV8cYLrQKJExL0FkVcGHXN2uoCMmJX2SgP078,2436
49
56
  ansible/_internal/ansible_collections/ansible/_protomatter/README.md,sha256=IyejgfHj83nAH19YDcLC391EbcxRzGkVR-67-zkxnIA,612
50
57
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/action/debug.py,sha256=Hpdd8wDpE5N0UbqQbCZUVGFpyw01LDvmMG4R7uP27GQ,1469
@@ -55,8 +62,8 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/origin
55
62
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.py,sha256=jumCgi2BVy80WgAyHMuVGTIqINN11pt1S5bkUJsF-y8,552
56
63
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.yml,sha256=HEdQ0Piu587suBfaC0dpUaH9czCZOgRKFSeSW16Bg0Q,1445
57
64
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/tag_names.py,sha256=fhTrWdxio0xD9YSS_exlDC3eW7QGE2qj38GeS16VIeI,462
58
- ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py,sha256=sjTkJFUtnzXKIUhvblFUIRruJIJuCRaPq30wXOferKE,456
59
- ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py,sha256=aOVQFMW5xDBcZBIRYM93ZwwDAn-SdNfQ1N3ROgYoaO0,1756
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
60
67
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.py,sha256=wvulF1t5DoJixeuvx-Ba8xbUInKmDCBASqOU9xySHjU,818
61
68
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.yml,sha256=DVc0oFQdZ2go3tkszKhbSo535rDbP6inId6IOMtVdUU,30
62
69
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.py,sha256=Zt6et3ahLkJ6bmgLbBP7xFhTkavUuT-xfLhdKa6T-sc,319
@@ -64,61 +71,63 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.y
64
71
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.py,sha256=A6vLIuZMi05Hwzvnm6mZ2besNBIoOGxcby4aM2zcD8M,453
65
72
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.yml,sha256=sRbc5UjNAelH023-mXpQ9z_-17i36-7L_0ynKIRb3EM,520
66
73
  ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
67
- ansible/cli/__init__.py,sha256=H62BdQKE6h82BIlz0MlOrMKqZE_Y2dW0n9HkqgUySv0,30733
74
+ ansible/cli/__init__.py,sha256=dU4UazspgS25quhETe1JGaOmYifWAy1Mmjk6Iz-TdI4,27930
68
75
  ansible/cli/_ssh_askpass.py,sha256=hzDkbYV82KZHWTjbGCHvnDB3hWeYdwoXt-6kFkrkPHg,1365
69
76
  ansible/cli/adhoc.py,sha256=z1IyIKaYi3tc7BFhwUauPYEx7hZjM7N8K5M1xW83Q-0,8391
70
77
  ansible/cli/config.py,sha256=PJ9hQPhPaX4OsJ3Y6B5KOII0b09RieAJRg7-jD3jg3A,28607
71
78
  ansible/cli/console.py,sha256=jDb5rEDpRT1reDGZycXwobNN6hzGRFAPke6IHLd-5cM,22010
72
- ansible/cli/doc.py,sha256=NDM10-ZzKxDM_p3l4miDAiE7FhLGkKct021FJQzROYs,70642
79
+ ansible/cli/doc.py,sha256=Pf4WxX3_dehN2R0kbLcTIQTCQ6oo1XUEPJgfsSBGB0A,73283
73
80
  ansible/cli/galaxy.py,sha256=ldWsmRxTCN-HXipw1TZvDRJjYLZDPwS_LYIKcEZabqE,95246
74
- ansible/cli/inventory.py,sha256=3nrD8YVpbtNXfdFCdUoMyMy6baPOyy1G4Ji8VEID-Vw,16293
81
+ ansible/cli/inventory.py,sha256=-41XSLhjMFQd8_dN-eUdTWS_VwxLFoeoZ1i-B3DRs9A,16286
75
82
  ansible/cli/playbook.py,sha256=yPOYqwH5qcI6uCVI2k4GrSB0thWQLjlauJOD-sFx11I,10546
76
83
  ansible/cli/pull.py,sha256=Bvc59o9KbLRlcKTCb_pzr-vcs2owDuThpQJlK05xYM8,18425
77
84
  ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
78
85
  ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
79
- ansible/cli/arguments/option_helpers.py,sha256=7fJuJ0dq_nC6M1BoOicu92lNhbRwD2379JOniqEbDc0,24445
86
+ ansible/cli/arguments/option_helpers.py,sha256=KTaGlw09OFAj2xj2-5w73kPqrilL7G4JUJIPWR7uaNg,24455
80
87
  ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
88
  ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=Wz413NyoBudEJdQt6pw2UAB4IveHQma4XoHBzFSENt0,13122
82
89
  ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
90
  ansible/collections/list.py,sha256=PhQU6f7-bieg892uWnSg_8Cg4etbDnQUbR5a6SOnydk,2873
84
91
  ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,1002
85
- ansible/compat/importlib_resources.py,sha256=oCjsu8foADOkMNwRuWiRCjQxO8zEOc-Olc2bKo-Kgh0,572
92
+ ansible/compat/importlib_resources.py,sha256=75SJApiBzBKuBDknj81vdfzSJSxc2Pi4YvgQkmmGtew,542
86
93
  ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
94
  ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
88
- ansible/config/base.yml,sha256=Vy4Y6wDVN-7lnVzvTi2pWbQFZrCn9nkiGejXt5DWGWA,88674
95
+ ansible/config/base.yml,sha256=byxUIajh4eBwBV_lY2STLLT8RVbZ0zEDCjaD1nIS5WY,89554
89
96
  ansible/config/manager.py,sha256=CC-JhhK4KN07rvXAfiex4sxjFSVtxsLx6E_YnpEOE88,31123
90
- ansible/errors/__init__.py,sha256=7nJsA0zFSesC3xVN_qf4-47VQmZ4eWi6R9zTEBW7gUY,16111
97
+ ansible/errors/__init__.py,sha256=J8s4UucIQEaaPuLQXsB-cdteRtjacBJE76N8eWV1d7M,16324
91
98
  ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
92
99
  ansible/executor/interpreter_discovery.py,sha256=UWeAxnHknJCci2gG3zt6edx5Nj4WbHYfJVcmW_DzItY,3858
93
- ansible/executor/module_common.py,sha256=gr0Rz-gSE-cGKLms-G-PejNHNE45K0e792C2vXMDspA,59432
100
+ ansible/executor/module_common.py,sha256=WGqJ6V_08Lbqodas0Zw-Oa9qfwDOicwhKSmhUmEeLiQ,59269
94
101
  ansible/executor/play_iterator.py,sha256=OY0W7x3F7VUQCjWIogkPqhvm7SFnxOXR5anlqJjHeHY,32282
95
102
  ansible/executor/playbook_executor.py,sha256=5wjvqw22RG4g_JlYDQnLFrUEa8aYQBWdgKhEpNonhKQ,14806
96
103
  ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
97
- ansible/executor/task_executor.py,sha256=EJhxQCtz4W6ERZ78o1_xm1h6bMQUwYZoCFKqw-PKU6c,62608
104
+ ansible/executor/task_executor.py,sha256=_gxdNInyouTOxJOTz3TR4x4DL0OJ19CG4X3SWEzJBKw,61234
98
105
  ansible/executor/task_queue_manager.py,sha256=aOO0CLUx6zDHG8836NhNVvxf2aZBe-8RVpKtccWXHDs,20785
99
- ansible/executor/task_result.py,sha256=GEo2atii06heQ_4eP5BaajpA6nAreEKBVt4cqXr8LiY,10293
106
+ ansible/executor/task_result.py,sha256=o5WOFTezMKBFpehg6SIqsAEGHiY5YONHYNo-kqse1aU,10253
100
107
  ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
108
  ansible/executor/powershell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
- ansible/executor/powershell/async_watchdog.ps1,sha256=SbLFIC47MvXcM-Be-pthi4tVrKsSuz3jCvvLWjkEYzw,3607
103
- ansible/executor/powershell/async_wrapper.ps1,sha256=9itsEVNyZ5-De7See4XFqJg-O_HF8tAbwoZOu1ort3E,9092
104
- ansible/executor/powershell/become_wrapper.ps1,sha256=nHJxjoh8yxqC6R-Fhm22Qz_2UdyfHKjZJYT6KB3ZFGU,3271
105
- ansible/executor/powershell/bootstrap_wrapper.ps1,sha256=HWGqX3a0F--PLlPV9MtSQ7yEoEnUxsMbFfrZhYMsUuQ,774
106
- ansible/executor/powershell/coverage_wrapper.ps1,sha256=vszIHNgkZxkTscgI2P1Ln3fKPik_1DcW0ytmQwde4wg,4602
107
- ansible/executor/powershell/exec_wrapper.ps1,sha256=I4M8ezelp_PTlW68lbNLsj7xwDreRoXv0SCGbEC0qfo,15784
108
- ansible/executor/powershell/module_manifest.py,sha256=Z-PO-mdMiHla4I__phOofGyyQPyfcJuUSmEtXCqggHY,20893
109
- ansible/executor/powershell/module_wrapper.ps1,sha256=ORn5zTlHH7e8W9TqedVDXGTsVyCsvz2lrcajScyfqWo,5839
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
110
119
  ansible/executor/powershell/psrp_fetch_file.ps1,sha256=2735Mhr-3BWolq1JDr-wKQfM4cgdzm8QqVgh5DRIEkw,838
111
120
  ansible/executor/powershell/psrp_put_file.ps1,sha256=D4cQrxpOTdjJXAh7DP3-J3AVZcUknGnxCz_XW5gtup0,3694
112
121
  ansible/executor/powershell/winrm_fetch_file.ps1,sha256=wOgnMGFwNhq9c_-8kuGBNchGj69R0Udv-am39M3BEDw,979
113
122
  ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVzxsS13ZwTXrx7krlgU,834
114
123
  ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
115
- ansible/executor/process/worker.py,sha256=i9K7ngnDyZfA-RJCKLFkuh1iHLQOL22LOpqs37bmyVk,12963
124
+ ansible/executor/process/worker.py,sha256=0-OwF8eW2e2RxM67GvX4hMpQWsW0inJ1Eaant_jygLk,9450
116
125
  ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
117
126
  ansible/galaxy/api.py,sha256=KGz_0HTScEJKXC9bInwPsGb-Bv3YSpUr2jWmGZLtDD0,40467
118
127
  ansible/galaxy/role.py,sha256=QwOkaguThfzlThtrtFYCr7Tyoa4FBVL2R3n5jZinHNE,21036
119
128
  ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
120
129
  ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
121
- ansible/galaxy/collection/__init__.py,sha256=GCeDj1XUQaxLDMxPS4u5yYjAaU5A4rCj6MUb7zNsZbQ,78987
130
+ ansible/galaxy/collection/__init__.py,sha256=6HWPrLTYChrNKVk09sPRYLz850LaOdEl2W0iHnxbsF4,78866
122
131
  ansible/galaxy/collection/concrete_artifact_manager.py,sha256=NpvbVoLI5nyEXaef2LwAqQjXCGa8HeMiBz2DY-vKyjQ,29367
123
132
  ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
124
133
  ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
@@ -196,71 +205,74 @@ ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,104
196
205
  ansible/inventory/group.py,sha256=_4q692djOZmJjk2x2UQuS03lSst8zCucJnq9kVZ2uks,9351
197
206
  ansible/inventory/helpers.py,sha256=8DaVEdMhIfan6Fy65AoHO3rILtl3mDzxei4_j8r4fp4,1556
198
207
  ansible/inventory/host.py,sha256=Zzod7oWrsrCfv4v8oOu40ASEsrlk3IIZH4WtGs8rbU4,4654
199
- ansible/inventory/manager.py,sha256=bZppxa0x0aLvs801zhn1f0fNQhPszKFcvbAjWZmMjes,31812
208
+ ansible/inventory/manager.py,sha256=fxg2sq7s-VBJnn9TvJCgv-xvYIu0DLJTix_y3w0wLcc,31811
200
209
  ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
210
  ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
202
- ansible/module_utils/ansible_release.py,sha256=IXr3OR35RyOVLr9l3eiSI-Lq37a-X2gZPSBHSI-O6r8,854
211
+ ansible/module_utils/ansible_release.py,sha256=hCnTObVykt-Bk_pPXZ1_tZzVRLP76RqWQ-VAsw1veXs,854
203
212
  ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
204
- ansible/module_utils/basic.py,sha256=e92CZBmokHTcQG-gcmxHZ8efweBMDalcoTAg9rJ-J9M,89711
213
+ ansible/module_utils/basic.py,sha256=bu_uo6WT3-ZHystMW2XoHyXru_Pk-YTxw0WzmRdqdqc,90671
205
214
  ansible/module_utils/connection.py,sha256=EYcZ-JJ3GnCb8Hhdan2upLJfgfQGvzpPUHNY_qVXyKw,7675
206
- ansible/module_utils/datatag.py,sha256=17e-G9STbcSX6T4QYGU4UEXIp2a-syeOPbtoI6ehWWg,1485
215
+ ansible/module_utils/datatag.py,sha256=tEwBXm75G_Hrk7I0dj_B1htFmIFCGDB_ifO-3MPPSHs,1659
207
216
  ansible/module_utils/errors.py,sha256=cOVAUZaQTeYaSGhKnYsT3L8vshayQHbCXzkT6HIVi_o,3345
208
217
  ansible/module_utils/json_utils.py,sha256=DzkQvlXMD_clOPxRXv7rZwAwMAUii3XH_MvhS4ab39Y,3403
209
- ansible/module_utils/service.py,sha256=Dp6mBQfptTtVIot1ehKRkkt4wYLKUNVEfVFffpopR4E,10159
218
+ ansible/module_utils/service.py,sha256=MNR0VBlAxIqBDEebnhaZco14jzAt43ShfXSh9x9c79s,9797
210
219
  ansible/module_utils/splitter.py,sha256=MnvQVnEZ_ceiso1JsesGjaK-PTKcSPOd2FH9FKX8wLA,9468
211
220
  ansible/module_utils/testing.py,sha256=BbQdvHibcqCtze3XrX7eXYbyGF3UKRmNqfPviosSVNk,1144
212
221
  ansible/module_utils/urls.py,sha256=Gr58U25lr79T0e58Lu23GfDFsXK1UDbKLgMNiQ-_j6c,55670
213
222
  ansible/module_utils/yumdnf.py,sha256=dgMG2ASj5CdWgkxt8skEw9kTMt6cQVanhr4oVBSMH7M,7091
214
- ansible/module_utils/_internal/__init__.py,sha256=T2ZfKvtofxP_-rFmHt_dONIRxLtCq_-adsAJrPc2JzE,2132
215
- ansible/module_utils/_internal/_ambient_context.py,sha256=pH5Rg0BTxA3nPlxdEFXLgJlRM_lne3d-h66H5doQv2s,2582
216
- ansible/module_utils/_internal/_ansiballz.py,sha256=6Cje-il-s0i_OSYImI5A2RMrTr_cMnnEljffUChNhe4,3587
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
217
226
  ansible/module_utils/_internal/_dataclass_validation.py,sha256=TmPBK90g8Vvizlvu-UIrobgALH0l3LHrFUiysJfyRC8,8684
218
227
  ansible/module_utils/_internal/_debugging.py,sha256=tXTzEuWNteF7SgkdeXZCHSZoxtKyHw2hlBjhlRmw7lk,1037
219
- ansible/module_utils/_internal/_deprecator.py,sha256=VUVGGnXtG_1XGyF1EHha6DTl8pWAumY7gk1RU_Ww9Pc,5950
220
- ansible/module_utils/_internal/_errors.py,sha256=RFViPohV-MMexNZfbBDtN9d928knMgBB9UPuJpvUzqI,1098
221
- ansible/module_utils/_internal/_plugin_info.py,sha256=sqleowqXgu68WGBEnY9FSmEH1n26vmJSMuMBFWaKVeI,679
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
222
234
  ansible/module_utils/_internal/_testing.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
- ansible/module_utils/_internal/_traceback.py,sha256=Zo-ZgS1Hi9grjIX-0n5hhgodgaKTiqOoe2vAWAe-tZU,3681
235
+ ansible/module_utils/_internal/_text_utils.py,sha256=ilp5D5VQxpWhFdGayTioN6gqzUpQlUFiteygwZ-mP_o,263
236
+ ansible/module_utils/_internal/_traceback.py,sha256=ANiTQtAX3NfL10lW6EPU5f5s5QH9A6pam3dgfA-9Btc,3650
224
237
  ansible/module_utils/_internal/_validation.py,sha256=8CKgc_ha53EgtrPCVjOU6GvsARj09U67Ys2vvhQWS6c,558
225
238
  ansible/module_utils/_internal/_concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
239
  ansible/module_utils/_internal/_concurrent/_daemon_threading.py,sha256=okMP5QPoU9YhYMQF31tUJ6ChyiXJHF-6TD9t6nfjKWE,1085
227
240
  ansible/module_utils/_internal/_concurrent/_futures.py,sha256=Y0hpH1QXavZbKDude5Y8oYlxPvOhQarBhTQRc97odVs,936
228
- ansible/module_utils/_internal/_datatag/__init__.py,sha256=nhEvBp-DEK2dtK3iYSdWCWIMPu7GJD0dk72tOkp4VUM,36538
229
- ansible/module_utils/_internal/_datatag/_tags.py,sha256=49RJm4dqYe5Msjypc8WQJLYpTDR5GR6o5V_FAb9vBrM,471
241
+ ansible/module_utils/_internal/_datatag/__init__.py,sha256=i70Rd7Vxd3MCiGbTycFgBOYXMCpAczRQpzfwA8hX3w4,36666
242
+ ansible/module_utils/_internal/_datatag/_tags.py,sha256=Rkze_LoP5-BUYsoAJjv5ojcplHsGp6MhwER95HQvRqY,468
230
243
  ansible/module_utils/_internal/_json/__init__.py,sha256=KscFIf_fl3-TTM2fe68MwETHZBCxf83nZrsbVhqkpEM,2181
231
244
  ansible/module_utils/_internal/_json/_legacy_encoder.py,sha256=Qz2WVbgFxprEpP174zrK7LIKEIk_cLwPsh2gbahavKo,1191
232
- ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=X-ZpGD0AZDfJgOFyxmtusFs3AFzLut2C_XTowHUGxWY,16136
245
+ ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=evHUwP-QgSGgA72Hq9zZwPkcnA142TkWyHAjyJpA-uY,16945
233
246
  ansible/module_utils/_internal/_json/_profiles/_fallback_to_str.py,sha256=3tlLf_VmQ35ukRylBvbCBz8_oYgE1kKeqA1uGr_imps,2439
234
- ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py,sha256=TOhi0GrY__ctUeQ38a9KtQkJzxmnghnBlY0vP5ajqf8,1027
235
- ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py,sha256=3650w89nXi_iYmUYTJCRtwjCXxVwinjRrii6K_GIYEI,1454
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
236
249
  ansible/module_utils/_internal/_json/_profiles/_module_modern_c2m.py,sha256=C--vG1dgfVd1hLFj8M4ThpGtsTp5Osfcf5oTtblALlQ,1202
237
250
  ansible/module_utils/_internal/_json/_profiles/_module_modern_m2c.py,sha256=XFW1NwDO6ouI7D_BLKFWY6wFVHKuZwuhrk7s8FOw6pU,1179
238
- ansible/module_utils/_internal/_json/_profiles/_tagless.py,sha256=C8_70ONx1m6oyOG_6i5Hq-uV4rOfdsQUY_9p6-vEaXQ,2087
251
+ ansible/module_utils/_internal/_json/_profiles/_tagless.py,sha256=7Ic882IROz3ti8ruBMB54qhpRyWR_S8ZYh23hsWL8i4,2207
239
252
  ansible/module_utils/_internal/_patches/__init__.py,sha256=zNEWEYnuQyFovxTN3UIjzwgVNgus85C_GzVk7ZOWpgQ,2565
240
- ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=RXSotSQGSHQ4VTcQXRs1s4rsQUbBbeTp7EO0WFCctxw,2395
253
+ ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=gj9hhy2bg2KCUgkrIEEzAwLJ4R-EvJbnZsuSlO-cJHE,2225
241
254
  ansible/module_utils/_internal/_patches/_socket_patch.py,sha256=3vVyCy-rCedETOMFibzhookih-7YsYBsue9YurfIeVI,939
242
255
  ansible/module_utils/_internal/_patches/_sys_intern_patch.py,sha256=ym-ZcAG56i41tr6VMpn8hWrNt10HsAvAF9Eiy5PZHWU,849
243
256
  ansible/module_utils/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
257
  ansible/module_utils/common/_collections_compat.py,sha256=476Gfp4DP1g5ssOW_P-FFakUxC7palI_1TIBtnDBsfk,930
245
258
  ansible/module_utils/common/_utils.py,sha256=940v5oANJiA9XJ6i_RtCRvA1e5GPJh3b8lRXY0KpOSI,1082
246
- ansible/module_utils/common/arg_spec.py,sha256=kuzYbHM6yey8266Mgo-3Gfw3GLVxav0fIKpY4Nvt5_g,12354
247
- ansible/module_utils/common/collections.py,sha256=tVks92bYcYfJQaFkqbOQwV-beuaB0AtUGNKKs8FC_FQ,3708
259
+ ansible/module_utils/common/arg_spec.py,sha256=qfosoeoqVhTJ9shZT2Bvg7xh5cFSZiqjaQKXeOasbV4,12354
260
+ ansible/module_utils/common/collections.py,sha256=fmrKF_dat5DTzMfoeVas6iGW5DrX_fjnhQAk4jBfDB8,4005
248
261
  ansible/module_utils/common/dict_transformations.py,sha256=OEb7uuXpAErRp69aMW8KFng0qVBYqIR3133cFWQ5VeI,5525
249
262
  ansible/module_utils/common/file.py,sha256=LyBp_C_nbcsalY8biqQ_2WQ_ZT1iXe8ub1nNv5alI84,2982
250
- ansible/module_utils/common/json.py,sha256=i5CkEU4lXiiKsnK3Pwy21yjRTLWHVLkoMDfkN9fwXjY,4048
263
+ ansible/module_utils/common/json.py,sha256=4M_1BjxFdX46-Iq1lNmb-4SLS7z5OXSLo6-lm4ukx3Q,4046
251
264
  ansible/module_utils/common/locale.py,sha256=X-z_wjmd1ipcWRAahfcDKXr3uxMRqwnvALUS1fQ4XaE,2296
252
- ansible/module_utils/common/messages.py,sha256=adW8JzA6Kj_efal-P1d6k3LJ7eJ2opPmperzgFVDpqk,4727
253
265
  ansible/module_utils/common/network.py,sha256=ffFrBriNPHFDslP54NRN3QaJADEWBG7eCgv5c7RcOHs,4226
254
266
  ansible/module_utils/common/parameters.py,sha256=cTPoF2XceWvaqcr1Cks0r4yq3PLPhELAGooY4G2MJOY,37484
255
267
  ansible/module_utils/common/process.py,sha256=4Iantrh13r_70oKljgoMeYi4C0EpjqQawLcbKcvxw9o,2234
256
268
  ansible/module_utils/common/respawn.py,sha256=bR381qAFnXdhneNc6EEaBgbZaiNt4QGEJ0tHoNMtsHk,4250
257
269
  ansible/module_utils/common/sentinel.py,sha256=aPX7KPw1PifJX9wq8qfStEU5oiEPmOJEn76I_08vsjo,2372
258
270
  ansible/module_utils/common/sys_info.py,sha256=sFcTKy_3iurRMBsB7aocWz_H-yO4Bgq_95zgOMl4slQ,5436
259
- ansible/module_utils/common/validation.py,sha256=ZwGbL8SntIseZruPDug5zTMBKaBJiJ7h-uoq_Hy7YZ4,20181
260
- ansible/module_utils/common/warnings.py,sha256=TbA4gwu29qhjEXSJgbKTJzcbE6yuU0WrIYz84BvJ_u4,3705
261
- ansible/module_utils/common/yaml.py,sha256=3w2Xn7jA1Ke8Fohh4yIq_3wo4S4vCpw6JN8lTYJAG0g,2900
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
262
274
  ansible/module_utils/common/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
- ansible/module_utils/common/text/converters.py,sha256=agSrDCyyMflgpLkpLDxePyadQc-vpbM4RN31dgvKwxw,12141
275
+ ansible/module_utils/common/text/converters.py,sha256=37fSfGQs3XjHOEMmGG4SVEE8hMlNuO-QAwn9RN_5Mfo,12138
264
276
  ansible/module_utils/common/text/formatters.py,sha256=6r1gHFGWVLPHdUloc89tUjx_TJvjeC9NKJmen4hV6Tc,4502
265
277
  ansible/module_utils/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
278
  ansible/module_utils/compat/datetime.py,sha256=7exiAHnMJESffXSDcqooSLL1CyYImeFS5iOp4C8erCQ,1444
@@ -324,7 +336,7 @@ ansible/module_utils/facts/system/caps.py,sha256=ivWnrNR_L-Qicc9mCLjzCNahPgChaI8
324
336
  ansible/module_utils/facts/system/chroot.py,sha256=-95UvBeowED7_5-lM8-lbB8fspCvK37omufu-IEyrm4,1488
325
337
  ansible/module_utils/facts/system/cmdline.py,sha256=jlBoYdenGUy2ooiATuudP4cYsVVcynKOVlAPOpQndAQ,2608
326
338
  ansible/module_utils/facts/system/date_time.py,sha256=cFg729Q2xCuKx0D3nCECr-u5mbltGp8l5txXJ26Q8fM,3086
327
- ansible/module_utils/facts/system/distribution.py,sha256=Y9V6Ii-OGRUjTIJSlTNZcQ34qn_BwxtZX9606TVvY-A,32920
339
+ ansible/module_utils/facts/system/distribution.py,sha256=_U2OhmIywKu0bwtkAycRHMeVQvlD0aeNTXkG1giPMkI,33543
328
340
  ansible/module_utils/facts/system/dns.py,sha256=N_dGrdB6B7TLfD-aiNqZTs7BnNIQopgPm-wxyrH2jxw,2664
329
341
  ansible/module_utils/facts/system/env.py,sha256=tyVvRA9OJxWbODBu309C2n6DvaXG9wrQG-bKril2C38,1156
330
342
  ansible/module_utils/facts/system/fips.py,sha256=9zdP23yXfY4re6Ut4OeQVYO31JkKoy1kD-HeQdSLZ5Q,784
@@ -344,7 +356,7 @@ ansible/module_utils/facts/virtual/base.py,sha256=BijfSGBeCSdDzK2jeeQ2oymgupItCv
344
356
  ansible/module_utils/facts/virtual/dragonfly.py,sha256=fx8MZjy6FqfSpshxnPyGs5B4FezmYFqqTr1XibWWSeE,959
345
357
  ansible/module_utils/facts/virtual/freebsd.py,sha256=Wc3hjsxrjWnLaZFBX3zM4lZpeGy4ZS5BTOXTs9SRN-I,3018
346
358
  ansible/module_utils/facts/virtual/hpux.py,sha256=NLQfUpXE7Gh-eZFfLyugvnnJjWFIGv9xqjC_zV4DLKw,2823
347
- ansible/module_utils/facts/virtual/linux.py,sha256=UOtZzsbO6ENkj7-0X1SHOZ8DpyQB8RcZJh3mj4dxBHU,17851
359
+ ansible/module_utils/facts/virtual/linux.py,sha256=j7NvGDsig-emyAHPLXU9UNdKsuOcWkw-3drfJQXBEeI,17861
348
360
  ansible/module_utils/facts/virtual/netbsd.py,sha256=53n3E9vowi8kCbFyj7vDeKocZ3OU_TLVSKRJRU8SenE,2896
349
361
  ansible/module_utils/facts/virtual/openbsd.py,sha256=J8Ow7x3J5ZuHFThqAwIdAdTLV1V9vN_U965Q34TAvNA,2785
350
362
  ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH2j5KO3F5jKo3Ec,5700
@@ -368,11 +380,11 @@ ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
368
380
  ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
369
381
  ansible/modules/apt.py,sha256=eMoHgh-4SWWu6d3VmxybzP-ACTi0sKaJOkMIqrh1Sjo,62708
370
382
  ansible/modules/apt_key.py,sha256=DmmNkVdRrhOCEhItsbXUA3TuAfXZW4A0CGZu4JeqL90,18485
371
- ansible/modules/apt_repository.py,sha256=AzJnzlImqU_ZWZVBMi9xAklzfMqqTOuuOH1Jp5m16pY,31529
383
+ ansible/modules/apt_repository.py,sha256=uNxVJw9RmaPjH90KniLmNyR7BKL_wBe1wAUAOFx7GF4,30814
372
384
  ansible/modules/assemble.py,sha256=4_Cy7mS-4Yhpz0pnj6sVes39DTlgzBLlfTKEsHCQ9D8,9271
373
385
  ansible/modules/assert.py,sha256=B41GXAdBQ6XbYj9G8ENx29fhAlcnyBXm8zDqbd1TnMU,2954
374
- ansible/modules/async_status.py,sha256=7qs2cyVvoFDLDWhVYzjsfdLPj89EKKjSDw5vZ1WbPH4,4589
375
- ansible/modules/async_wrapper.py,sha256=3nwRroF8BImwYQVd9Yb0jldm_c6hdLpOsou53xiHaew,12011
386
+ ansible/modules/async_status.py,sha256=EnE4-KbUduCUm4sVhpmNlAEbCo6fA8fV4K9MWNnvG20,4742
387
+ ansible/modules/async_wrapper.py,sha256=q1WHnGwHkWfCpsnT126LAPkHGxteIQsG3I08Rm_T2qE,12038
376
388
  ansible/modules/blockinfile.py,sha256=CkzCw73Kbkvgb763C1x_qUMkf6UdJJsyZC_Kiy85Unw,15450
377
389
  ansible/modules/command.py,sha256=v7KAW_uI4zhBwaKBDZaHNSk3coZlyXoG9xGtDOM4MaY,14037
378
390
  ansible/modules/copy.py,sha256=uLltSKg-0poPjtV9WKhq0w4Z_6wOKm8mNR8How-DHXw,26725
@@ -381,7 +393,7 @@ ansible/modules/deb822_repository.py,sha256=kHBZlGGQ_fA3dMxx_NzjC-L2ZuhkEwTTfLS6
381
393
  ansible/modules/debconf.py,sha256=YAS1yba0yaxPrfFCLFLQwtHxlpriNxiJiwpDnmm3JP0,9362
382
394
  ansible/modules/debug.py,sha256=E2UADFGHgS78KxCiOdXoojX5G4pAAMz32VGHgaPObNs,2908
383
395
  ansible/modules/dnf.py,sha256=BStesAQE40-hZRMwV8IZW5j3yIv1wd1XGXsXjW1jKfw,52289
384
- ansible/modules/dnf5.py,sha256=cMAgXt84CwnI4ujiF0gIAcQ3DXtprhLaetOyMr_z3MQ,31943
396
+ ansible/modules/dnf5.py,sha256=W-XUpu0NsKcJifvWfYHj6ba4fORI4YeYVU5ZiTazkQE,31659
385
397
  ansible/modules/dpkg_selections.py,sha256=RWtzxNNOfQ5SdwMwnt_1q-IJhLVb-nxNAriJwRHNVuI,2805
386
398
  ansible/modules/expect.py,sha256=yBisXCvL8OY5c_9AibH8xY3elmKebCwoHZAJj-MFPU0,9279
387
399
  ansible/modules/fail.py,sha256=kppam_caBllcF5IcKEYd-Xc--okSAOWNG9dVbpn2CwM,1659
@@ -394,7 +406,7 @@ ansible/modules/getent.py,sha256=tq3z0Szq_m2gp4DOgACRvNJzh-tkXGzd2Ew8XxrGRWM,559
394
406
  ansible/modules/git.py,sha256=BtZWA4furfNfPefusAD-ihBROKHdRcBucpvpLJttxJU,57126
395
407
  ansible/modules/group.py,sha256=UKbXzwsgAFWWMlgFW8R3CyzthJXXu5JHnHnj7IlqOac,23747
396
408
  ansible/modules/group_by.py,sha256=_RDYbNJS27eosefvwnBCM86GyobaY-h3ZiWkd04qU68,2416
397
- ansible/modules/hostname.py,sha256=oklIQ8jwpnRZ2IAxY5igFg1hQFSHisNjXp-6sCQzmko,28181
409
+ ansible/modules/hostname.py,sha256=txDX_C4pmKL5S3EeTZH8V5w25SrqMu8D5IQan7nNsTs,28163
398
410
  ansible/modules/import_playbook.py,sha256=QP6ccgKA5Re8jmoLHK35hKVeuJnzTRDgZbEoo_uyFFk,2056
399
411
  ansible/modules/import_role.py,sha256=LkGQWDRvU2EUJIamn9OcdpcpfVPpswhLildcHe9urS4,3730
400
412
  ansible/modules/import_tasks.py,sha256=ZhlJafQ3ETM9Pi3Qt2gfedBI-q73HaeJigBKhR8c-eI,2137
@@ -416,7 +428,7 @@ ansible/modules/reboot.py,sha256=P5mbaDi_k-ISjR5M0adW6yeyssahw4QvXYqSN7elypk,480
416
428
  ansible/modules/replace.py,sha256=jAnGfWD38_zo8gC-rM3LkPwch54w9j044Bpr8mjpP2Q,11683
417
429
  ansible/modules/rpm_key.py,sha256=8_DnYHOL1lAOlb_V5Y8T-qHwptjJxfaZw1I35tyGT7Q,9312
418
430
  ansible/modules/script.py,sha256=WmdINj1MxpccX9MspvWg6aP5MZGlfm0KSPpqNY7h0fk,4410
419
- ansible/modules/service.py,sha256=JERseiwe48tM3sInErGVu6Hz-8bhtSrVV98LO_mGt9Q,62314
431
+ ansible/modules/service.py,sha256=4cBxGoDrJ1I737LwxL4_ctYN-sIZU1lH3OUs0sxXssI,62026
420
432
  ansible/modules/service_facts.py,sha256=J-t3vjwTq7a4NuOhLlF0VG9J5rx0PaWVFpslKJVzCTk,21243
421
433
  ansible/modules/set_fact.py,sha256=3MysP4bx0XnYevu5L7iAJPLuq7ykp6lixeauU4LKEQc,5676
422
434
  ansible/modules/set_stats.py,sha256=3X3noQW_QQaG3Hb9rsxSDw6HP34MjqYJaqUF7RUL4-E,2641
@@ -438,17 +450,17 @@ ansible/modules/wait_for.py,sha256=GP1DbV4kJMxMH2GNH8RuhQN1SV-H5RJb6KNUBvuqQL0,2
438
450
  ansible/modules/wait_for_connection.py,sha256=pzmYONmV3vubd8SxrDVMsoradq6n5g-ZJpkuEgptUlk,3367
439
451
  ansible/modules/yum_repository.py,sha256=VdqnEsQE4QAqDCt6bmlLFdSPOVNHHyFHOoyH4DP9RjY,24461
440
452
  ansible/parsing/__init__.py,sha256=NMP9ZkK59SNdQktw76aWAXVAm5U2POXLgAK7wH-1h0g,742
441
- ansible/parsing/ajson.py,sha256=nOmziM9rYsMPC9nmE25OMC1VOO939PCvg8ewuD0J9HA,808
442
- ansible/parsing/dataloader.py,sha256=2ddxsBTSexZHgUXImdJzfscWJrRh7RGEEyl8uxKv3Nk,22733
443
- ansible/parsing/mod_args.py,sha256=y-1cm1ckH5R6paiJEj8T67-pUnDtlq-tftsN43M9MTA,14201
444
- ansible/parsing/plugin_docs.py,sha256=Lrm_fQnvR4HsrLgSrHmBPrJX3Ni9CcKlw8XQOBQxZuo,6328
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
445
457
  ansible/parsing/quoting.py,sha256=myYxG625XK6rgNULbBuKp23G2R83c0UilrF1ZImDjGs,1057
446
458
  ansible/parsing/splitter.py,sha256=hgrgDTa8v6WVvya8I-2DJr9HfcgZeg6hMb9p4nSnE98,11604
447
459
  ansible/parsing/utils/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
448
460
  ansible/parsing/utils/addresses.py,sha256=gxdde1fWiOiG6r8wrwBuQS9EdbHxTQJA1peIl0mz47Y,8084
449
461
  ansible/parsing/utils/jsonify.py,sha256=mDFpCkxbn7mZQoBtN3occq4EzaSxdmol9LJwXB0-T5g,1279
450
- ansible/parsing/utils/yaml.py,sha256=B6C4swXkDypI3m2Mlm6m_hdyM-hpTpd93sbGJ7jLnE8,2314
451
- ansible/parsing/vault/__init__.py,sha256=4DVRPLBL79xZnUqN5QSwHB-Qlsd_9jR530T4y2MWt4Q,60393
462
+ ansible/parsing/utils/yaml.py,sha256=F3PQLD7ptyIB3DkutFPotjbuwhQ02YDtK0guLLs5zpo,2325
463
+ ansible/parsing/vault/__init__.py,sha256=uqbTyPjKkLX2xy8FmH9E5P--IdfhEJ2VHAbX8mgmDJ8,60373
452
464
  ansible/parsing/yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
453
465
  ansible/parsing/yaml/dumper.py,sha256=_GyNiVEk-ivwYtl9qkPe11_6FJA-tZGlt6jOqwdQQpk,298
454
466
  ansible/parsing/yaml/loader.py,sha256=REAzmajcwu2Vld9IEl62dPRTMHBY_iJGVYE3IKNhx4o,298
@@ -468,9 +480,9 @@ ansible/playbook/loop_control.py,sha256=5rZz6aWXpvvwOD4CzrS_b_cnXIu4Gf56czkomX1N
468
480
  ansible/playbook/notifiable.py,sha256=MQz4VZuOga35VLcdUxVd9FQVzFg-djtQZhs09DS2juA,299
469
481
  ansible/playbook/play.py,sha256=RHxQgshU6c7t8qFCBdZOutdXjRjrWeqWItPJJSw2GJE,17357
470
482
  ansible/playbook/play_context.py,sha256=fxK1UTt4kXEO9I_-gDX6W0xscCcDWa8QM-m0olD5mQM,13639
471
- ansible/playbook/playbook_include.py,sha256=ns4aXKJjGhYaFDa9MuY3P8Qw8re87OKoT_8r5D5jEVE,7641
483
+ ansible/playbook/playbook_include.py,sha256=XNNlb-THo8rYQ-zFJpsomt29VsF-eRM9wbgwTCHqfw4,7634
472
484
  ansible/playbook/role_include.py,sha256=DV7num4uVJvkIY4IHgB0uHmE8-gRmaNYbuoqP0-7dTY,7610
473
- ansible/playbook/taggable.py,sha256=PsR97eDVSXkrwPWGXHYlZd70hc_WBy2RNV0NvtAnG9w,3710
485
+ ansible/playbook/taggable.py,sha256=fstOOaGXukB5t9Bx-89zsEB9UN9FwOzhTGx8iADG2ec,3293
474
486
  ansible/playbook/task.py,sha256=iuvBMyaguZ_PCImg6FdY3ZAJ9eodDkozkSEQtpc1zq8,24533
475
487
  ansible/playbook/task_include.py,sha256=y7jSK7CqYEXmXShJOPUi3lCYuZI85197Gp4zLYsyUPw,5258
476
488
  ansible/playbook/role/__init__.py,sha256=cpm0nCmF_F0UO5tXpmkV49auW7DR5YRwdHOUEH1wXSs,29652
@@ -478,36 +490,36 @@ ansible/playbook/role/definition.py,sha256=44IRVqojhemfrdC7bU7aIiYwcFm6kWr30Hn4x
478
490
  ansible/playbook/role/include.py,sha256=yGBXglTQDtCpZ2XO1mVxp2UtsdLpLTt30KVR2AbBe5U,2159
479
491
  ansible/playbook/role/metadata.py,sha256=h439HGUucs2gOMUJlp2M0OO0_wnWWlQmTs_sOe8h6Sc,5018
480
492
  ansible/playbook/role/requirement.py,sha256=CNgLa0J6zZk2YQ_aeALnjQvehkkFXhrK8LQQZs7Ztzc,4173
481
- ansible/plugins/__init__.py,sha256=h2YINajRVBLM4G5BYnGCgycC0QCF9qys_Ssb6AAM93c,8456
482
- ansible/plugins/list.py,sha256=5lQD2AHH4ysJzPBbgYE3ASJvSZOgKppGlgPrQkmGmv8,8895
483
- ansible/plugins/loader.py,sha256=eUiuCsF3Imwl9105VzxcjCeLHHmtfW2eOBQJPVDleTs,81912
484
- ansible/plugins/action/__init__.py,sha256=rsCmbq3w1CtXvw0GsiCArK3ab4tJB7_KLoqPkCZF40k,70111
485
- ansible/plugins/action/add_host.py,sha256=pz8R7qzCwwinxTx4hEZ3FMsVJpMV3NEfQvn2wqLGLLY,3579
486
- ansible/plugins/action/assemble.py,sha256=ePMLNuh7Ie2fp-An9G5yieg9mETqAi0RL5aNK3W47OM,6529
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
487
499
  ansible/plugins/action/assert.py,sha256=k1kLWyaXNE-XTVWBX1eIHaSZpGg8O8WeJfa62vqzcLM,4007
488
- ansible/plugins/action/async_status.py,sha256=Cv6dLt94Z6YIPZpPIDhS_yC7yqKtT13HyDdaIONMUCU,1726
500
+ ansible/plugins/action/async_status.py,sha256=_kcqeVJ6rrLKS_nGr4z1wApVCHC9pBU66YcuCTchasg,1964
489
501
  ansible/plugins/action/command.py,sha256=N09Vf2QypBMZ6NSptQGbf6EAN-kfqLCROGPkOSgV3SY,1069
490
- ansible/plugins/action/copy.py,sha256=m6LI1AeabkC05xkAr6mIKW-oixbufAV7nZxgK4QePrQ,27619
502
+ ansible/plugins/action/copy.py,sha256=dq8wGc83xYyRc9X887QnOJxdRAt0rB2-NJQxuxowClw,27570
491
503
  ansible/plugins/action/debug.py,sha256=KPWtGEPbc119_e1rNQztCB-wzelJObAv16qJNHPUNb4,3604
492
504
  ansible/plugins/action/dnf.py,sha256=2ObzxBLRPBPy2JCp3wWRzR1fIEHzhS5y34CoAzTXqN0,3664
493
505
  ansible/plugins/action/fail.py,sha256=MzIefYaHaRdpjgnqc9eNge0P32btlTPzO6TB22jkadk,1457
494
506
  ansible/plugins/action/fetch.py,sha256=S55lvqxBTmKSV3IrcgKZTZnXz6xCSiPWLeZbUk1VzFI,10166
495
- ansible/plugins/action/gather_facts.py,sha256=VQwq9bwRwtwOiSwzLSc7N7OI5S9BxwuTgmfq6m7ATfM,9487
507
+ ansible/plugins/action/gather_facts.py,sha256=vr-3BJiBDP25aJd9e1uydpS3r8Np2T6nubUbYAls58w,9109
496
508
  ansible/plugins/action/group_by.py,sha256=zbkI2A-6jyK9Ux--QVWZMJOp2VNxjaAebwJpMG6YYnc,1894
497
509
  ansible/plugins/action/include_vars.py,sha256=c7lKJ7qlcdwm0HP8XRm-8VxK9JLE4feo-WDw0Tjc7RQ,11553
498
510
  ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
499
- ansible/plugins/action/package.py,sha256=oytdO1-nZEj1qowxTtSZT-E6GGpQAk4THH7brvr7TTY,4867
511
+ ansible/plugins/action/package.py,sha256=F49tAgsQpeVxHiraLQW_LyjAHyTCaZty1GS6Zv2UwYE,4807
500
512
  ansible/plugins/action/pause.py,sha256=dlBT3oSreP_Wp850MarMuNuROF_UiBfJ6ccexkV94zU,5674
501
513
  ansible/plugins/action/raw.py,sha256=4kmANddcBwXFRhu8zIwBu392QE-p7WReO4DWD1YDnGU,1762
502
514
  ansible/plugins/action/reboot.py,sha256=EFTn8KtawFI4E38COh55_ygDe0vkpI_vMdHDNBKB5ao,22032
503
- ansible/plugins/action/script.py,sha256=20cV9_4g6U5EcNvYlgDp8wTU8FB5tuGUDMwhojZdNCE,8814
504
- ansible/plugins/action/service.py,sha256=7wupKrBwIRnxQZXPHuOiEJaf1KtkgVmfn0ntM5fuamI,4424
515
+ ansible/plugins/action/script.py,sha256=KNnxVi_QTEEcoS7zOe2GnbY6ps8_OJWMskJF7PkZvsE,8601
516
+ ansible/plugins/action/service.py,sha256=H3byRUoOITfEvIDnjuX7LunDVc6KiliXn3mT3R0BxiE,4298
505
517
  ansible/plugins/action/set_fact.py,sha256=G1Q0HcTaXFIykNvjSG65tFkif0dMuvMvt3T44OlrB6Y,2186
506
518
  ansible/plugins/action/set_stats.py,sha256=wRmlGzp5TAaLrPlz2O6kL6F_uSGYBaxtnF4jWmB3qeY,2476
507
519
  ansible/plugins/action/shell.py,sha256=pd7Dm6gAZXWNAqANd7ETHSs90le7VXAxe7pB97T_zwU,1527
508
- ansible/plugins/action/template.py,sha256=yf1OJZN8f4TqmQ2HuFtEM8HFhuxBTR7nKJEak-mz4fQ,8472
509
- ansible/plugins/action/unarchive.py,sha256=88h7YM6B9j_2XE5Sp-02o9oKYfnLliIlD5EbVXX3ndY,4859
510
- ansible/plugins/action/uri.py,sha256=325UaEu7OY4yXnIj8c1Y0sB_7buzp3oQRoNDVJgwPg0,3981
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
511
523
  ansible/plugins/action/validate_argument_spec.py,sha256=U-g8PugBg3QTTqkKQwtOS3NNou12yT4NQtXqJ10qBw8,3937
512
524
  ansible/plugins/action/wait_for_connection.py,sha256=ALvq83mqFmZ1S8pmdOwdVqQxKax90De5U3dZBKjC_dU,4564
513
525
  ansible/plugins/become/__init__.py,sha256=oifRA8cKuxrBxqiwVdT0UX8nOEZuX-VV6-I1LqvbI1Y,5210
@@ -518,26 +530,26 @@ ansible/plugins/cache/__init__.py,sha256=mkRyVlibIizqO8ao7g5jB0APQKhbngcVobOVmD4
518
530
  ansible/plugins/cache/base.py,sha256=bBRxjoyZ4Y18O4MGH_U5uI8NQiPDRZzxWKjMqyvta4Y,1143
519
531
  ansible/plugins/cache/jsonfile.py,sha256=BVmwy7KgUkEDRgq1f82NQTQUEpxn0MIfbtExHSP5s_I,1659
520
532
  ansible/plugins/cache/memory.py,sha256=AzxNRhijtssd2xZoEQYO4kiYh8OQZeE0vFgngla-QPE,1166
521
- ansible/plugins/callback/__init__.py,sha256=JhhuYyyE6fdM0AIw-caBx2zhHbpkdq0lepOFryDOXWw,29195
533
+ ansible/plugins/callback/__init__.py,sha256=UEb83C36GFe0SgFdJn55IQ5tl-NTay6MU_2QOFz7sek,29041
522
534
  ansible/plugins/callback/default.py,sha256=31TI9bGMftSG4Frp7ixqM9nX5nI0r3TjNgkUon9n3vw,17632
523
- ansible/plugins/callback/junit.py,sha256=fZw5BLeojLJqbYiAX7cuCg4iLGkRmQMnod1tu_xKZgI,14541
535
+ ansible/plugins/callback/junit.py,sha256=HijVroOgMK5nBGEr8lc3LwGNtIcOAe3FYdEI_BxFgJk,14710
524
536
  ansible/plugins/callback/minimal.py,sha256=4POsci-dcNcqS34_N6OHfnQEdWRYNou0gpp7n2Icjsw,3237
525
537
  ansible/plugins/callback/oneline.py,sha256=GoAhI9TVsrf-4cXXeu6VK2a9Pd0c_Ko2MPp0FlzeepI,4173
526
538
  ansible/plugins/callback/tree.py,sha256=gjKWlkx5i9G0SF7VjKKs8C8j3NG9WVOtXsAsGjKtWQs,3649
527
539
  ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42AKMy1E,22719
528
540
  ansible/plugins/connection/__init__.py,sha256=5Dk6zdWL_uDwLk1Iy0WVyhqS55qytHMCr3Rt9pUfwfg,19506
529
- ansible/plugins/connection/local.py,sha256=ikW0CVPN7bxAbAIVtyYOOaOpqq9mlmo9yVVuZOQXiVM,12176
541
+ ansible/plugins/connection/local.py,sha256=m80y1RHaoOW4HlQfq3F7BL4tpKpbv9zBQyd6MshwRwU,12174
530
542
  ansible/plugins/connection/paramiko_ssh.py,sha256=q81eDkrwpNox87NLL1jEptUl_PTE7-KDANIhF66dSEQ,27651
531
543
  ansible/plugins/connection/psrp.py,sha256=BZrcc6wu5kZrYs0S0vTnnoV2XXlt98-KcIoR70skSpA,30736
532
- ansible/plugins/connection/ssh.py,sha256=fe-JPvDaxTlXibB0FiHvL3emC2dBgahs5QR3Z0RUKbU,71093
533
- ansible/plugins/connection/winrm.py,sha256=PPQGzxD72LXofXx-AzWQVEsvstktC9xbUCyCmLfeTJo,38196
544
+ ansible/plugins/connection/ssh.py,sha256=KzCAT2Ml0STsYDHxZFFGpZHp9ITLQ8LnqwzP45ha_08,71362
545
+ ansible/plugins/connection/winrm.py,sha256=KOLZHGNtyLIhCCHRsu0pzJX5X_UFfQIFdHy-FU1IXrM,38488
534
546
  ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
547
  ansible/plugins/doc_fragments/action_common_attributes.py,sha256=Xj26JljzTDZD9aZw6nBSvdW-i5z8M7Fk6rzQqNsYKm8,2442
536
548
  ansible/plugins/doc_fragments/action_core.py,sha256=y8SZ8aTI4Imrm7TZPyEje4Mp5_Qc-itky7y9YfSo_vE,2855
537
549
  ansible/plugins/doc_fragments/backup.py,sha256=xRDCmzQXdP5JuLND3vVcpi-r_ZUxffd65RyfDQvDu6o,507
538
550
  ansible/plugins/doc_fragments/checksum_common.py,sha256=7FvlK39jHxRfWZmLwypBz1Y1ccsEV9CyHDN3uAe6P9Q,995
539
551
  ansible/plugins/doc_fragments/connection_pipelining.py,sha256=qakFITWoDcWWS90fLZ7HbEglbyBrqgg89Cf5Un4k2aI,1182
540
- ansible/plugins/doc_fragments/constructed.py,sha256=gHLqBuAsORIjloaxVMb_uBg8RYXLnvDp-J_DjEcUXtU,3298
552
+ ansible/plugins/doc_fragments/constructed.py,sha256=MystVfEBISSpKrIGBQlXLhqnNX25Mn5i3Ze2ChYrYqU,3320
541
553
  ansible/plugins/doc_fragments/decrypt.py,sha256=gTRUiNTINhI80f97LVxNzjTs1GEgTfcQRCt4nN_CXDw,487
542
554
  ansible/plugins/doc_fragments/default_callback.py,sha256=w8qnzrpFjWEyQB8GhdEICV3Yhnd4FY-rN0Fvu55ksP4,3212
543
555
  ansible/plugins/doc_fragments/files.py,sha256=MkzsSvm2KnJr-Yhrv-k8xOi2rVyH9N7tAM4MV9zozn0,4760
@@ -561,11 +573,11 @@ ansible/plugins/filter/combinations.yml,sha256=LttrIICjapNtZHWnvJD-C9Pv3PIKP16i8
561
573
  ansible/plugins/filter/combine.yml,sha256=QH2zy4qr9wPpEyr-XKmphbls60M4ZSdAkj7r3cuvC3Q,1671
562
574
  ansible/plugins/filter/comment.yml,sha256=nJVzBF2Qiwa-qQRioJK42cbWt3Rb5LYmfvGPhrhU8Rc,2139
563
575
  ansible/plugins/filter/commonpath.yml,sha256=SPx3fPy4GPJaKmY2S8aJI1I800FOgErYAKVXV1etp1Q,696
564
- ansible/plugins/filter/core.py,sha256=4vy5t5pfaUjClXgZDaU-Ue4vspNaDsR9tXYyWcJ6Cgw,27418
576
+ ansible/plugins/filter/core.py,sha256=TDVir4QsRCC1zUFE20nqPLpOcbrApdcyNJOIbP8qrnY,27605
565
577
  ansible/plugins/filter/dict2items.yml,sha256=A3gL25dyGrSqP44PtqQgg6paUnwReAzC7Brkqel-39E,1523
566
578
  ansible/plugins/filter/difference.yml,sha256=YJnJJMYejCcBaNgxFBhYj-z6OysRHmss1gUgrIJBQFk,1091
567
579
  ansible/plugins/filter/dirname.yml,sha256=Z7p7ay8s3_Zee6gIu7qr4wUC-an7lwLwuoVmgHQCKyg,820
568
- ansible/plugins/filter/encryption.py,sha256=oIzvXfta1sjd4XMEnheoyr7jW1bORoCPKn91e5Taoqg,3079
580
+ ansible/plugins/filter/encryption.py,sha256=5i1XDkd5eODhxrG-_8wjGqbsyFPtU4W3Otbq4HYz4X8,3071
569
581
  ansible/plugins/filter/expanduser.yml,sha256=P_AD4oBYbADe2f7pzHjbnkM95t8P1OzN0S3AHLT6C9o,506
570
582
  ansible/plugins/filter/expandvars.yml,sha256=KqtMP_oHLXsKFxHn_3iKX5PPGV5l-yhWX1jPD-sJOeE,569
571
583
  ansible/plugins/filter/extract.yml,sha256=vZ4MJ2bosxriZTCVyMCqBs85XczqRP6rlePT0-bxfU0,1367
@@ -627,24 +639,24 @@ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQ
627
639
  ansible/plugins/filter/zip.yml,sha256=LEtp9xRWuPjWDHyHdm1rVYbe1k9hdxGToLrNriRgHc4,1352
628
640
  ansible/plugins/filter/zip_longest.yml,sha256=VHaZlibbKoh9F9cxo9Z7EakellHAvJAsliVRS4Mq_co,1256
629
641
  ansible/plugins/httpapi/__init__.py,sha256=k5YFXPK7gug-6LkI5gihNZR5cMY6N1uRKT4wOYRWdOE,3093
630
- ansible/plugins/inventory/__init__.py,sha256=F8vuUwdDy3PbBgiwsAEC1bnCMzLpWRpxgDkXuZ7sK6M,21873
642
+ ansible/plugins/inventory/__init__.py,sha256=NC9pqzVDJsruh7OipM0n5mFmZL8VG13lGu3L9gVsTg0,21790
631
643
  ansible/plugins/inventory/advanced_host_list.py,sha256=9PlZtS78C7uI7Y-ypfwP2u9scck6hA64TVVAX6Ovs-I,2273
632
644
  ansible/plugins/inventory/auto.py,sha256=bGznhN4RfFLznnth2C4QxCfbVdxzyQsmoT6sp8tneIY,2876
633
645
  ansible/plugins/inventory/constructed.py,sha256=N1oj4IDE6rXqTd3r0yGtuwLNYtuzbBRbhFkG-Jawhig,7353
634
646
  ansible/plugins/inventory/generator.py,sha256=90Zhmt3MK5_Nfz4lL3jjozO0p8eiIlz2WqoyH7ITygI,5824
635
647
  ansible/plugins/inventory/host_list.py,sha256=DZayr155_Izfb5YGvzL7OMyWc-QQwyg04h5eDaFq8P8,2348
636
648
  ansible/plugins/inventory/ini.py,sha256=7kkySGQYkXDISkh2JrK0izI8HfeMnSzD8nY28ZunQok,19358
637
- ansible/plugins/inventory/script.py,sha256=EWXMWr5mhGkLuWZIBojT5o-jg20LJAApgX63RebJ-tw,15185
649
+ ansible/plugins/inventory/script.py,sha256=ryrrUY8xZ5QR9302jEPg2KM8bCSO_btnTcxYs3rlpOU,15184
638
650
  ansible/plugins/inventory/toml.py,sha256=xZnpzVtxtCEZ1aBB0SpAjy2iO0qpL01-QVnCihiCBfQ,5577
639
651
  ansible/plugins/inventory/yaml.py,sha256=Z6ANo6E20DM6Axs1cd6z7jUv5Tur-dHEtRsx0LmGm58,7530
640
652
  ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
641
653
  ansible/plugins/lookup/config.py,sha256=9IHIWhAcflC-Gm-1RVPcIVMmaULYhUbwoKLTBBzqxkA,6186
642
- ansible/plugins/lookup/csvfile.py,sha256=GkgCEtXezMtBQ2JvP8hpvB_MeOglD5FLmIo5AAloUjE,7939
654
+ ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
643
655
  ansible/plugins/lookup/dict.py,sha256=9LTeK9YZOG4U9l-2gy5Jp1sDqsXRlf4F3WbULV17pjE,2139
644
656
  ansible/plugins/lookup/env.py,sha256=IEMZs0p_rLR4jcfJ-sNqJT8vijnH4-MNyNXM_ttuqJ4,2620
645
657
  ansible/plugins/lookup/file.py,sha256=mHzVVKhShRVeXGBoL4gt_Q-DLBtTf3lCbVSMNrEFy-Q,2924
646
658
  ansible/plugins/lookup/fileglob.py,sha256=FDvmiKVu-wSwzrT4k14qVHOFaORAUFUhkWPvX291J9s,3056
647
- ansible/plugins/lookup/first_found.py,sha256=zguQxgLZYDwFDbsQuWgyd7Xa5Kf_P5wdGTlkHS9Rhec,11190
659
+ ansible/plugins/lookup/first_found.py,sha256=--ILjXtZMffzg5wwK2u8NDX6Aj5GNS2TCJh55NCADd4,11228
648
660
  ansible/plugins/lookup/indexed_items.py,sha256=80giTqR90ncG0a29emYTACmCir4dMY7QBEyQd06HFVw,1306
649
661
  ansible/plugins/lookup/ini.py,sha256=cKJG87FrDzl2n799TMqIQimSkQbme2DSIE5neY0P3Ds,8171
650
662
  ansible/plugins/lookup/inventory_hostnames.py,sha256=JhQkageEIMemrYtxcznt-eUeqxySPJ8xwT37wXdcn0c,1716
@@ -664,10 +676,10 @@ ansible/plugins/lookup/url.py,sha256=EzMzJpR3JURFDuZCjpvwK4W8cTkZj_5g5p77t3mKOyM
664
676
  ansible/plugins/lookup/varnames.py,sha256=4WKSH-u0ZnQD47r20c5OenaG6Vlamp6nweIZSFOJ0b8,2595
665
677
  ansible/plugins/lookup/vars.py,sha256=gxADVj2vdF_AA612NihSY3HbacczOdr91UqkeaS7xu4,3266
666
678
  ansible/plugins/netconf/__init__.py,sha256=50w1g2rhUo6L-xtiMT20jbR8WyOnhwNSRd2IRNSjNX4,17094
667
- ansible/plugins/shell/__init__.py,sha256=arXgnTmb-1GKNDhxXBqGqp043kLPoOiia1dqK7jSPRw,8985
679
+ ansible/plugins/shell/__init__.py,sha256=yxBEqC2gM7lD6d1BNrzcOWgGbZJnIsvNARcbO83NhE4,10801
668
680
  ansible/plugins/shell/cmd.py,sha256=tH1OZ9RKtNOzOjIJ_XlPcnz0T29LLkIl7X6qlDXZHGA,2170
669
- ansible/plugins/shell/powershell.py,sha256=82CqQ4GYHjb63r1CZ27iYEKT2E5R7EpSf4zxJAllthQ,16241
670
- ansible/plugins/shell/sh.py,sha256=4EDpzJU9veZyVdTeZvkz1E-EPLqxD5W3_3KOYUliHX0,3898
681
+ ansible/plugins/shell/powershell.py,sha256=2kI7vBkVF7-ko2H4ZYSbaKzGp2w3t1fK0-9-PFioiF8,17896
682
+ ansible/plugins/shell/sh.py,sha256=ZC4lDg0riSIR9vocRaNboT-E3N-Y1hSuVtiAvDEDUTk,3657
671
683
  ansible/plugins/strategy/__init__.py,sha256=S1rowHRLtNkqQzPnDvpWx7BYdzUGkyIvCgTXorCMbE0,56392
672
684
  ansible/plugins/strategy/debug.py,sha256=LJaaals9GQq82Idq4D39NnJrYZPcZiLcu14GsIb3SI8,1205
673
685
  ansible/plugins/strategy/free.py,sha256=gnH0U1BzBzvU0SuOYgFt7A315XQiIvvgHmxR9cLyxoA,15656
@@ -681,7 +693,7 @@ ansible/plugins/test/any.yml,sha256=urB1M9FK_RXOeN8oJLdMfn884pnB6yv1wC1mdA84_vE,
681
693
  ansible/plugins/test/change.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
682
694
  ansible/plugins/test/changed.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
683
695
  ansible/plugins/test/contains.yml,sha256=Tb-rCKkGUo4fSpY3lrAlyjJrzN8H0A2Uv1LN_HMPMQg,1288
684
- ansible/plugins/test/core.py,sha256=XYVWnzQhlzXxcdLaXOx-DLWxhJRk8GI7po7iriaBLvw,11117
696
+ ansible/plugins/test/core.py,sha256=lEfU1zgF1KHp63zCaQriUwUIYp96wxDOIhqSkbZdSws,10970
685
697
  ansible/plugins/test/directory.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
686
698
  ansible/plugins/test/exists.yml,sha256=R8lteO8uYy-XelgK7nK3U_sTUDz0DrTO2BAUr8ltgrM,885
687
699
  ansible/plugins/test/failed.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7erA0,803
@@ -689,7 +701,7 @@ ansible/plugins/test/failure.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7e
689
701
  ansible/plugins/test/falsy.yml,sha256=SFzc-DA00IVrZ0qhf170YVq9eU14gw67cm7Gp062ns4,801
690
702
  ansible/plugins/test/file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
691
703
  ansible/plugins/test/files.py,sha256=YvdrNZ23EOKIttRBiwThij4sPgbFvgOvgc2Uw9RiMM4,1407
692
- ansible/plugins/test/finished.yml,sha256=eAfkCk54sSB-G6ReG_NaYH8dGGiixhZyZs7SoFP4CdQ,699
704
+ ansible/plugins/test/finished.yml,sha256=tJ5NDBpiuk-VVq0-Q1CHVi4vI0eZjzT9o43iU5HJvgo,702
693
705
  ansible/plugins/test/is_abs.yml,sha256=lZA0XP1oBNg___Du6SqNOkDeQC9xIcZpROYV5XJG9bg,764
694
706
  ansible/plugins/test/is_dir.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
695
707
  ansible/plugins/test/is_file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
@@ -720,7 +732,7 @@ ansible/plugins/test/superset.yml,sha256=KcPyWv-MqREe_hgKdilPJjOJ1O7hGgHLLZEfvEg
720
732
  ansible/plugins/test/timedout.yml,sha256=w-QWRd_nJqY9oE4ypd6Eyi4oc12ngIDZJBICBvWossU,594
721
733
  ansible/plugins/test/truthy.yml,sha256=Flgl3QawsSbBYK24d1ciSSmrUCJwnWRdt8YIOI9uyLw,810
722
734
  ansible/plugins/test/unreachable.yml,sha256=KCrtQULh4YZ3iOZiE0-_SGCCpqnjIDf3n5Go5w5d58k,695
723
- ansible/plugins/test/uri.py,sha256=9g4rBTrmAqWy4JtUv8ZhtOirRegXEbNuHmWC33feeNA,1042
735
+ ansible/plugins/test/uri.py,sha256=j1WZU7eCfNEu3m2udzVTP8nIbJ6TFsG3DmO62FIosM4,965
724
736
  ansible/plugins/test/uri.yml,sha256=jqb-Ppm-uQfOh-XgTm6iW8dxW1s2NvFpHBsPBsWEMzM,1115
725
737
  ansible/plugins/test/url.yml,sha256=XelZ7TQrt8b2xOMaJh1FHt93vTFZp_B3k8lqVap9MSU,934
726
738
  ansible/plugins/test/urn.yml,sha256=yA58wCfvnD4MlWIHAkR_VaxZ9-FRKhGUncl_KF_8Uh0,576
@@ -730,21 +742,20 @@ ansible/plugins/test/version.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3m
730
742
  ansible/plugins/test/version_compare.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3ma38,3283
731
743
  ansible/plugins/vars/__init__.py,sha256=D3YwVKABesBwag9e7GsLOxlRWqEO5NgfHDmYSq0z_1k,1331
732
744
  ansible/plugins/vars/host_group_vars.py,sha256=II1322kBCCMbBtLL31AydKJ6pmjDZNr5ab6fI7rWNXU,5921
733
- ansible/template/__init__.py,sha256=0Ft9uRn9ZRX19TO47Q2tXqayPtOiQMBFfpAMYkKCBNE,17850
745
+ ansible/template/__init__.py,sha256=bTv0ipZhZUmwd7L18rdTK6n3ow6WHdc8e5XKbsSKL5E,18947
734
746
  ansible/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
735
747
  ansible/utils/_junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx2ERXwM,8671
736
- ansible/utils/_ssh_agent.py,sha256=2WlQqytGHoSkASLBscMfBOv69QAV0YNuBfKak4dh0nk,21277
737
748
  ansible/utils/cmd_functions.py,sha256=VmGs5ntdVaaqAJHcCTpGG3rYAAcTNl1b2-Iw4YVOt9Y,2180
738
749
  ansible/utils/color.py,sha256=LjJO_12OsJiavBxwSDVXtLxdTzdwd2YWUp1OJ6KcM2g,4057
739
750
  ansible/utils/context_objects.py,sha256=vYulSJkzR3zxsQF_6_AqbPCCMy8WGC5dSqLFXJZqGIo,3034
740
- ansible/utils/display.py,sha256=ym8irMsZFDCFD63XJTviZHwnvrO3eX-pJcN_Gh3G8u4,48869
751
+ ansible/utils/display.py,sha256=wcL8lPGqziDb9scHE1VxoZi3-iTHKQu3aDkxsbuILN8,48781
741
752
  ansible/utils/encrypt.py,sha256=j7DcEPr_yHSLYfYEruybjCl7kFk4rKjjTebyGx_-ZbA,7590
742
753
  ansible/utils/fqcn.py,sha256=_wPNWMkR0mqRdkr6fn9FRgEkaCQHw40yardWe97FfEc,1215
743
754
  ansible/utils/galaxy.py,sha256=Un3XgXhx8FoC6tkp1cZ33rmiAaRg634exKruwOVhtdQ,3855
744
- ansible/utils/hashing.py,sha256=bj9ZaP7B4o0la8RUiRL0FPfip2qZCxudcAa-PQ4F7zU,2837
755
+ ansible/utils/hashing.py,sha256=y6bQHStwmeHayqIH0LeAgKDe7EDnaj2cY-T4B1qeFIM,2749
745
756
  ansible/utils/helpers.py,sha256=b4O4RGswsQR_lbcfQsOXpw7AqaXt92nyUvb2PEDeFWQ,1759
746
757
  ansible/utils/jsonrpc.py,sha256=NyVItx9-ppCCsnn856VGoeSeRdu--e8ieZ6WzrD-4CI,3806
747
- ansible/utils/listify.py,sha256=kDtcewq4gWi-waCfqgHy-eITDbvXA08Gx_qvgbYI62I,1275
758
+ ansible/utils/listify.py,sha256=QCi-jvTaklqvHpK0CKuH_mhk5E91Lh-_UjmjGdqYunE,1545
748
759
  ansible/utils/lock.py,sha256=aP6MfrvWHdO_V756hwFsJG1I9QaQyFJq9W0tf7pCN3I,1306
749
760
  ansible/utils/multiprocessing.py,sha256=Xgs3kXqbzVujXah0-R_D6eUcQoiapbQ-0yclNpkAvs4,614
750
761
  ansible/utils/path.py,sha256=RMuCOlqUyDjIlKTAqNhD2N7iuKkL4jnvXNWh9aMtQRw,6051
@@ -755,7 +766,7 @@ ansible/utils/shlex.py,sha256=eUCZ0VkxMSEoyXCDspS9E4cI8pQWn83OFCt7sbVLB6g,841
755
766
  ansible/utils/singleton.py,sha256=6nYKQz0zmslyaOvbzCSG0Eud1eIgsQiSPZ1DyY7tXtc,1024
756
767
  ansible/utils/ssh_functions.py,sha256=cwLETKrXhcdaqYlwuvUdQRv9CZKdnLt5trk9VMVrJO4,2268
757
768
  ansible/utils/unicode.py,sha256=__zbdElrMS9Rrqo9H7tF8zkjKFQCFU8kTtj5cVIITxM,1100
758
- ansible/utils/unsafe_proxy.py,sha256=f_oJ0jCOh28Aa4Ps5QuhlBuPJCigVwpNKdfffw3xGC0,2114
769
+ ansible/utils/unsafe_proxy.py,sha256=KvL4YeKk3cjxVDTcK9-ijBUneJDOMRngqLOTITFABPE,2107
759
770
  ansible/utils/vars.py,sha256=RhZssst9c2fRWvlT6YgDW3v45mmea3x1KLucyzKUsE8,11443
760
771
  ansible/utils/version.py,sha256=TKmSzm_MFZVJWpvmOnIEGZzRfeHLwWmeuHj16zGqb2c,7736
761
772
  ansible/utils/collection_loader/__init__.py,sha256=lwLu1LJhWz3cRzFLfNWuFdS-Rhods6aReqOaqoVaDaM,2564
@@ -764,22 +775,22 @@ ansible/utils/collection_loader/_collection_finder.py,sha256=3E71MX6FU2OmBeK5BpJ
764
775
  ansible/utils/collection_loader/_collection_meta.py,sha256=p2eZArsO8RCl4PlN1x2I-7A7Q8HZpdFoeqfMNVaRgiU,1815
765
776
  ansible/vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
766
777
  ansible/vars/clean.py,sha256=Y9F3gyB1swxNVixpMOMGpG0kVRFAD2OHZLn93WPKgso,6016
767
- ansible/vars/hostvars.py,sha256=EaRFnZbPqAv8PDMF-aS_v6igoV3MNzix_VwuPviwNLI,4365
778
+ ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
768
779
  ansible/vars/manager.py,sha256=pCLAvO_J_IQPBPPnOb6JHhU5t2dTXUYpj3D3eMxmJKw,28041
769
780
  ansible/vars/plugins.py,sha256=Qnk83j898hQ-oiJHaKsel177tkYLwm6cCoHed4GPoiA,4519
770
781
  ansible/vars/reserved.py,sha256=r7qXzXJ5uZdkRYjmyf3uSxU6EHnOVLEiMMnwOM7Q46U,2771
771
- ansible_core-2.19.0b4.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
772
- ansible_core-2.19.0b4.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
773
- ansible_core-2.19.0b4.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
774
- ansible_core-2.19.0b4.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
775
- ansible_core-2.19.0b4.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
776
- ansible_core-2.19.0b4.dist-info/licenses/licenses/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
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
777
788
  ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
778
789
  ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
779
790
  ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
780
- ansible_test/_data/completion/docker.txt,sha256=bt-LjFgB5VZ7DBIS43VxDrtaK-dcxnZ70D6CFwpTcuE,663
791
+ ansible_test/_data/completion/docker.txt,sha256=ZIZh6j5AlB5A3Dj1rPErwAIa2qJGa2a3LbpqaqGX98c,663
781
792
  ansible_test/_data/completion/network.txt,sha256=BxVN0UxlVkRUrPi9MBArQOe6nR8exaow0oCAznUdfKQ,100
782
- ansible_test/_data/completion/remote.txt,sha256=3SQfQSESlS-tnhi2uqorZ0XaK0im9edF80UPU9kG9pc,913
793
+ ansible_test/_data/completion/remote.txt,sha256=cFj6aW8cKbRbJDYLPkQhh3347mBPyHtgOnk34UrqTgU,972
783
794
  ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
784
795
  ansible_test/_data/playbooks/posix_coverage_setup.yml,sha256=PgQNVzVTsNmfnu0sT2SAYiWtkMSOppfmh0oVmAsb7TQ,594
785
796
  ansible_test/_data/playbooks/posix_coverage_teardown.yml,sha256=xHci5QllwJymFtig-hsOXm-Wdrxz063JH14aIyRXhyc,212
@@ -799,9 +810,9 @@ ansible_test/_data/requirements/ansible-test.txt,sha256=3W9TclOM-HcT6VmlhHqyeRIj
799
810
  ansible_test/_data/requirements/ansible.txt,sha256=YC7zdpWV7J-L78x1dQi_BdZwY9zPx870ckRkcn7aQtY,884
800
811
  ansible_test/_data/requirements/constraints.txt,sha256=vPTuYu3DeJoE3q9bPj5l3mGef8m0vWyyVgZ8QRuWJ2g,819
801
812
  ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
802
- ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=KOk7sV_qpf7DYje-4vxN0CRoi3o4QSsqrq3N8sSzaCo,169
813
+ ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=xKSbhHRwGc4O04RUJKZIWHVs5qpUS5UOgjhhdplGlL8,169
803
814
  ansible_test/_data/requirements/sanity.changelog.in,sha256=A0-S4lrfGxwfnbBNyA8IZ2slFrmHB70MZYVIQo6ogZE,135
804
- ansible_test/_data/requirements/sanity.changelog.txt,sha256=nLClRYjL171ivTPwMtOi0wWpW_xzuv1e1RQhRxf-hPs,268
815
+ ansible_test/_data/requirements/sanity.changelog.txt,sha256=cQetCVzZfqPNj0uyzCHi9j2Ol4pgYJTWIKlQaRS_Teo,268
805
816
  ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
806
817
  ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
807
818
  ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=XP-A1yZQaohuDbjhs_EBn7tEc3_lFg2gAhIz-WgsgB8,157
@@ -809,16 +820,16 @@ ansible_test/_data/requirements/sanity.import.txt,sha256=pQHaQf9Y7Kya41ETF04WGVm
809
820
  ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
810
821
  ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=ABpuHH_wjTdun2UK0EjJKW3XGH1WNEw0o1ku5TDqjrc,137
811
822
  ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
812
- ansible_test/_data/requirements/sanity.pep8.txt,sha256=oH7ycSz_RCrlX0J7_Y0GHn8P3g76rlkdxVmq4jmRwY4,113
823
+ ansible_test/_data/requirements/sanity.pep8.txt,sha256=Jq9LB_K2XuCY__zXeVF6Yr7UVc26wzgU_dLyGOh7sPs,113
813
824
  ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
814
825
  ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
815
- ansible_test/_data/requirements/sanity.pylint.txt,sha256=qjpv7mSee1u0THumdz-9ayh1H6PCw6mrFu6cpJFuFcw,215
826
+ ansible_test/_data/requirements/sanity.pylint.txt,sha256=toL12F-SBIwpxt3r528dMoBjoVBcXHiqsuZGtLVWDFU,216
816
827
  ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
817
828
  ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=ZTrFKxqX5TCmxWv-jXBz1S0RpOOfIyGmUsNNA9AdQ9A,150
818
829
  ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
819
830
  ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=wTbvLDeyTQrRAvAE6rqF5PWY0XPviBWGm_UyG_ER7Uo,211
820
831
  ansible_test/_data/requirements/sanity.yamllint.in,sha256=qtd2lDJ0A39NOP8OpnLX9Rdf_dn_89jh2XCjmmvTgHs,16
821
- ansible_test/_data/requirements/sanity.yamllint.txt,sha256=EL8Fy8Qyl01e2unI0JTpc2mr5wPRYr-ssehQpxrglo0,149
832
+ ansible_test/_data/requirements/sanity.yamllint.txt,sha256=t8qTcbMO9Gi4nSoFq7xzriQs8ZHYQmZ1IRI8DtGFaCo,149
822
833
  ansible_test/_data/requirements/units.txt,sha256=C6f8bZXbZCzpryYQiqlbX6fp_mrLBo3OiNh9025pBxE,228
823
834
  ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
824
835
  ansible_test/_internal/__init__.py,sha256=fiVNUc1Zf6pGY998sRGb_bbR8kt6m4r25UNYJwZpukE,3157
@@ -860,7 +871,7 @@ ansible_test/_internal/target.py,sha256=fm1L90VKHOjG3IVfGFKLHBH1LPavDgEu5DAHp08Y
860
871
  ansible_test/_internal/test.py,sha256=q17SmItAsiBWrSilDBZFSEBugv9QNsG5HzFOAFXcyh4,14516
861
872
  ansible_test/_internal/thread.py,sha256=eKmxnhy0811ZHjICxO7Q6RwxQcv0NpJTPs5EOrvjJDA,2597
862
873
  ansible_test/_internal/timeout.py,sha256=OlOzpe_WmKofexL2gxnKXGoIQuOO-7bbPTmi7seOUcs,4053
863
- ansible_test/_internal/util.py,sha256=zbVozq5NKG1x8_oxU64cIZ9lEByYuxgp1g3iXiEuBy8,38909
874
+ ansible_test/_internal/util.py,sha256=cEmVv84c4cbRuEn9jFgzw9z1yWybyrQnzRFfzUK2iBk,39486
864
875
  ansible_test/_internal/util_common.py,sha256=b9y_gCtlERbE7jqCoQ4Eobjwf7BQ1sv8yfZIDAbKQ5Y,17553
865
876
  ansible_test/_internal/venv.py,sha256=eb5RfjapntulFMTIQieyx8QdHo2LJfjgZY_wx3_htMw,5522
866
877
  ansible_test/_internal/ci/__init__.py,sha256=sZNgkICN4RRFy4Nn-ZB6dCm6Ui9d_xIrrjgaIzZ_VyI,7739
@@ -1012,12 +1023,12 @@ ansible_test/_util/controller/sanity/integration-aliases/yaml_to_json.py,sha256=
1012
1023
  ansible_test/_util/controller/sanity/pep8/current-ignore.txt,sha256=dpV9GzTy9R-crhVF5Kzllg_sXTCjeGEfUAoxJw79Nw4,310
1013
1024
  ansible_test/_util/controller/sanity/pslint/pslint.ps1,sha256=h0fLdkwF7JhGGjApvqAsCU87BKy0E_UiFJ_O7MARz6U,1089
1014
1025
  ansible_test/_util/controller/sanity/pslint/settings.psd1,sha256=QJnOH39HTVkJbPhhVo29olmQ_ftvzYpNa8uQ-figgws,1869
1015
- ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg,sha256=ioRjyMUgiZWQaS_eYbvNdVcOyulxoF_VSK3h6uxdzW0,2106
1016
- ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=DJyZi4yVp_ixyvDQAdaCrmTkNiFgf9ILurk4ESdATrk,2170
1017
- ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=sp-BrEpQVZebA1FVRtb1WVegyEr5O8zj_F_1NCVuRvc,1942
1018
- ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=h2qhEF9_RvP70katitXYVjePtJDzAsGJPeARQdhBFlE,4669
1019
- ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=D33wbIVfOBjkvxgWAPfN48aMZY4jh57xupsBQh6C-kg,4243
1020
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=1vTbPAGaA3KAiJ60dKWGrakufqIgJ5o_vwFL-e0GsaU,19447
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
1021
1032
  ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
1022
1033
  ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
1023
1034
  ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=Mb1Mx8WS4RulsORFgyctlFRR0Sn-PYPy4mVu_GYCD18,2359
@@ -1047,7 +1058,7 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=6u
1047
1058
  ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=n5ZrjY_feIK5auGcx21aYP03BQE6Ptu9RrXFAKAJcfE,1999
1048
1059
  ansible_test/_util/target/sanity/compile/compile.py,sha256=w6FO6aI4wiVb4DYNchthqCOrjwWRFmcaEKdM6_s1Vug,1303
1049
1060
  ansible_test/_util/target/sanity/import/importer.py,sha256=mwF8tFHR_m-jFpgPy-KEewOsoDiHD9u6dv8GbO6puFM,24699
1050
- ansible_test/_util/target/setup/bootstrap.sh,sha256=FuimNpsaeZ3vCNgh2cUzRvxBJVp1LwQwH5e6ccGu-cM,11886
1061
+ ansible_test/_util/target/setup/bootstrap.sh,sha256=LVGyk4jlF9oGaUdExCvo4I_yRiD3XXGx56BHPreWvYk,12591
1051
1062
  ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
1052
1063
  ansible_test/_util/target/setup/probe_cgroups.py,sha256=wloSlXxgaQeE9cdpc3Bw3BvE8LktkiE9vq_DpI-cGrY,660
1053
1064
  ansible_test/_util/target/setup/quiet_pip.py,sha256=LiyNCcZpXfLlWOTDndOSeXLX5hk2ukCObOn9GbuxEic,1980
@@ -1068,8 +1079,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
1068
1079
  ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
1069
1080
  ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
1070
1081
  ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
1071
- ansible_core-2.19.0b4.dist-info/METADATA,sha256=R_UmHiGlICZrxQQEitbG7calWkGy_BADvyNT33vYv3c,7732
1072
- ansible_core-2.19.0b4.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
1073
- ansible_core-2.19.0b4.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
1074
- ansible_core-2.19.0b4.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
1075
- ansible_core-2.19.0b4.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,,