ansible-core 2.19.0b4__py3-none-any.whl → 2.19.0b6__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 (225) hide show
  1. ansible/_internal/__init__.py +1 -1
  2. ansible/_internal/_ansiballz/__init__.py +0 -0
  3. ansible/_internal/_ansiballz/_builder.py +101 -0
  4. ansible/_internal/{_ansiballz.py → _ansiballz/_wrapper.py} +11 -11
  5. ansible/_internal/_collection_proxy.py +1 -1
  6. ansible/_internal/_errors/_alarm_timeout.py +66 -0
  7. ansible/_internal/_errors/_captured.py +25 -30
  8. ansible/_internal/_errors/_error_factory.py +89 -0
  9. ansible/_internal/_errors/_error_utils.py +240 -0
  10. ansible/_internal/_errors/_task_timeout.py +28 -0
  11. ansible/_internal/_event_formatting.py +127 -0
  12. ansible/_internal/_json/__init__.py +5 -5
  13. ansible/_internal/_json/_profiles/_cache_persistence.py +2 -0
  14. ansible/_internal/_json/_profiles/_inventory_legacy.py +1 -1
  15. ansible/_internal/_json/_profiles/_legacy.py +3 -11
  16. ansible/_internal/_ssh/__init__.py +0 -0
  17. ansible/_internal/_ssh/_agent_launch.py +91 -0
  18. ansible/{utils → _internal/_ssh}/_ssh_agent.py +55 -93
  19. ansible/_internal/_templating/__init__.py +5 -3
  20. ansible/_internal/_templating/_datatag.py +2 -1
  21. ansible/_internal/_templating/_engine.py +3 -4
  22. ansible/_internal/_templating/_jinja_bits.py +28 -20
  23. ansible/_internal/_templating/_jinja_common.py +18 -27
  24. ansible/_internal/_templating/_jinja_plugins.py +36 -5
  25. ansible/_internal/_templating/_lazy_containers.py +5 -5
  26. ansible/_internal/_templating/_template_vars.py +72 -0
  27. ansible/_internal/_templating/_transform.py +26 -19
  28. ansible/_internal/_templating/_utils.py +1 -1
  29. ansible/_internal/_yaml/_constructor.py +4 -4
  30. ansible/_internal/_yaml/_dumper.py +26 -18
  31. ansible/_internal/_yaml/_errors.py +7 -7
  32. ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py +1 -1
  33. ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py +1 -1
  34. ansible/cli/__init__.py +11 -93
  35. ansible/cli/arguments/option_helpers.py +3 -4
  36. ansible/cli/console.py +1 -1
  37. ansible/cli/doc.py +86 -30
  38. ansible/cli/inventory.py +5 -7
  39. ansible/compat/importlib_resources.py +9 -12
  40. ansible/config/base.yml +46 -0
  41. ansible/errors/__init__.py +98 -50
  42. ansible/executor/module_common.py +75 -49
  43. ansible/executor/powershell/async_watchdog.ps1 +2 -2
  44. ansible/executor/powershell/async_wrapper.ps1 +3 -3
  45. ansible/executor/powershell/become_wrapper.ps1 +20 -2
  46. ansible/executor/powershell/bootstrap_wrapper.ps1 +28 -6
  47. ansible/executor/powershell/coverage_wrapper.ps1 +15 -6
  48. ansible/executor/powershell/exec_wrapper.ps1 +219 -6
  49. ansible/executor/powershell/module_manifest.py +52 -0
  50. ansible/executor/powershell/module_wrapper.ps1 +47 -21
  51. ansible/executor/powershell/powershell_expand_user.ps1 +20 -0
  52. ansible/executor/powershell/powershell_mkdtemp.ps1 +17 -0
  53. ansible/executor/process/worker.py +40 -115
  54. ansible/executor/task_executor.py +26 -61
  55. ansible/executor/task_result.py +2 -4
  56. ansible/galaxy/api.py +1 -4
  57. ansible/galaxy/collection/__init__.py +2 -10
  58. ansible/galaxy/collection/concrete_artifact_manager.py +2 -8
  59. ansible/galaxy/role.py +2 -2
  60. ansible/inventory/manager.py +1 -1
  61. ansible/module_utils/_internal/__init__.py +7 -7
  62. ansible/module_utils/_internal/_ambient_context.py +3 -3
  63. ansible/module_utils/_internal/_ansiballz/__init__.py +0 -0
  64. ansible/module_utils/_internal/_ansiballz/_extensions/__init__.py +0 -0
  65. ansible/module_utils/_internal/_ansiballz/_extensions/_coverage.py +45 -0
  66. ansible/module_utils/_internal/_ansiballz/_extensions/_pydevd.py +62 -0
  67. ansible/module_utils/_internal/{_ansiballz.py → _ansiballz/_loader.py} +13 -39
  68. ansible/module_utils/_internal/_ansiballz/_respawn.py +32 -0
  69. ansible/module_utils/_internal/_ansiballz/_respawn_wrapper.py +23 -0
  70. ansible/module_utils/_internal/_datatag/__init__.py +43 -15
  71. ansible/module_utils/_internal/_datatag/_tags.py +2 -2
  72. ansible/module_utils/_internal/_deprecator.py +67 -55
  73. ansible/module_utils/_internal/_errors.py +88 -17
  74. ansible/module_utils/_internal/_event_utils.py +61 -0
  75. ansible/module_utils/_internal/_json/_profiles/__init__.py +22 -4
  76. ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py +2 -0
  77. ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py +2 -0
  78. ansible/module_utils/_internal/_json/_profiles/_tagless.py +3 -1
  79. ansible/module_utils/{common/messages.py → _internal/_messages.py} +54 -49
  80. ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py +1 -3
  81. ansible/module_utils/_internal/_plugin_info.py +15 -2
  82. ansible/module_utils/_internal/_stack.py +22 -0
  83. ansible/module_utils/_internal/_text_utils.py +6 -0
  84. ansible/module_utils/_internal/_traceback.py +11 -8
  85. ansible/module_utils/ansible_release.py +1 -1
  86. ansible/module_utils/basic.py +95 -71
  87. ansible/module_utils/common/arg_spec.py +2 -2
  88. ansible/module_utils/common/collections.py +6 -0
  89. ansible/module_utils/common/json.py +2 -2
  90. ansible/module_utils/common/respawn.py +4 -41
  91. ansible/module_utils/common/text/converters.py +3 -3
  92. ansible/module_utils/common/validation.py +1 -1
  93. ansible/module_utils/common/warnings.py +80 -23
  94. ansible/module_utils/common/yaml.py +1 -1
  95. ansible/module_utils/connection.py +8 -11
  96. ansible/module_utils/datatag.py +5 -2
  97. ansible/module_utils/facts/hardware/linux.py +1 -1
  98. ansible/module_utils/facts/sysctl.py +4 -6
  99. ansible/module_utils/facts/system/caps.py +2 -2
  100. ansible/module_utils/facts/system/distribution.py +16 -3
  101. ansible/module_utils/facts/system/local.py +1 -1
  102. ansible/module_utils/facts/virtual/linux.py +2 -2
  103. ansible/module_utils/service.py +3 -10
  104. ansible/module_utils/urls.py +4 -4
  105. ansible/modules/apt_repository.py +17 -39
  106. ansible/modules/assemble.py +2 -2
  107. ansible/modules/async_status.py +13 -11
  108. ansible/modules/async_wrapper.py +12 -22
  109. ansible/modules/command.py +3 -3
  110. ansible/modules/copy.py +4 -4
  111. ansible/modules/cron.py +1 -1
  112. ansible/modules/dnf5.py +14 -22
  113. ansible/modules/file.py +16 -17
  114. ansible/modules/find.py +3 -3
  115. ansible/modules/get_url.py +17 -0
  116. ansible/modules/git.py +9 -7
  117. ansible/modules/hostname.py +0 -1
  118. ansible/modules/known_hosts.py +12 -14
  119. ansible/modules/package.py +6 -0
  120. ansible/modules/replace.py +2 -2
  121. ansible/modules/service.py +3 -9
  122. ansible/modules/slurp.py +10 -13
  123. ansible/modules/stat.py +5 -7
  124. ansible/modules/unarchive.py +6 -6
  125. ansible/modules/user.py +1 -1
  126. ansible/modules/wait_for.py +28 -30
  127. ansible/modules/yum_repository.py +4 -3
  128. ansible/parsing/ajson.py +3 -5
  129. ansible/parsing/dataloader.py +6 -6
  130. ansible/parsing/mod_args.py +1 -1
  131. ansible/parsing/plugin_docs.py +2 -2
  132. ansible/parsing/utils/yaml.py +3 -3
  133. ansible/parsing/vault/__init__.py +10 -14
  134. ansible/playbook/base.py +7 -2
  135. ansible/playbook/included_file.py +3 -1
  136. ansible/playbook/play_context.py +2 -0
  137. ansible/playbook/playbook_include.py +1 -1
  138. ansible/playbook/taggable.py +19 -8
  139. ansible/playbook/task.py +2 -0
  140. ansible/plugins/__init__.py +0 -25
  141. ansible/plugins/action/__init__.py +8 -31
  142. ansible/plugins/action/add_host.py +1 -1
  143. ansible/plugins/action/assemble.py +8 -16
  144. ansible/plugins/action/async_status.py +7 -2
  145. ansible/plugins/action/copy.py +8 -7
  146. ansible/plugins/action/fetch.py +3 -3
  147. ansible/plugins/action/gather_facts.py +8 -8
  148. ansible/plugins/action/package.py +5 -8
  149. ansible/plugins/action/script.py +8 -15
  150. ansible/plugins/action/service.py +3 -7
  151. ansible/plugins/action/template.py +11 -10
  152. ansible/plugins/action/unarchive.py +5 -15
  153. ansible/plugins/action/uri.py +9 -20
  154. ansible/plugins/cache/__init__.py +17 -19
  155. ansible/plugins/callback/__init__.py +4 -6
  156. ansible/plugins/callback/junit.py +4 -2
  157. ansible/plugins/callback/tree.py +5 -5
  158. ansible/plugins/connection/local.py +6 -6
  159. ansible/plugins/connection/paramiko_ssh.py +5 -5
  160. ansible/plugins/connection/ssh.py +25 -15
  161. ansible/plugins/connection/winrm.py +6 -3
  162. ansible/plugins/doc_fragments/constructed.py +2 -2
  163. ansible/plugins/filter/core.py +32 -27
  164. ansible/plugins/filter/encryption.py +14 -6
  165. ansible/plugins/inventory/__init__.py +11 -10
  166. ansible/plugins/inventory/script.py +1 -1
  167. ansible/plugins/list.py +73 -19
  168. ansible/plugins/loader.py +7 -7
  169. ansible/plugins/lookup/csvfile.py +16 -71
  170. ansible/plugins/lookup/first_found.py +2 -1
  171. ansible/plugins/lookup/template.py +9 -4
  172. ansible/plugins/shell/__init__.py +56 -2
  173. ansible/plugins/shell/powershell.py +67 -9
  174. ansible/plugins/shell/sh.py +10 -5
  175. ansible/plugins/strategy/__init__.py +3 -3
  176. ansible/plugins/test/core.py +22 -16
  177. ansible/plugins/test/finished.yml +1 -1
  178. ansible/plugins/test/uri.py +2 -5
  179. ansible/release.py +1 -1
  180. ansible/template/__init__.py +38 -54
  181. ansible/utils/collection_loader/_collection_finder.py +3 -3
  182. ansible/utils/display.py +124 -138
  183. ansible/utils/galaxy.py +2 -2
  184. ansible/utils/hashing.py +6 -8
  185. ansible/utils/listify.py +6 -4
  186. ansible/utils/path.py +5 -7
  187. ansible/utils/py3compat.py +2 -1
  188. ansible/utils/ssh_functions.py +3 -2
  189. ansible/utils/unsafe_proxy.py +1 -1
  190. ansible/vars/hostvars.py +1 -1
  191. ansible/vars/plugins.py +3 -3
  192. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/METADATA +1 -1
  193. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/RECORD +224 -204
  194. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/WHEEL +1 -1
  195. ansible_test/_data/completion/docker.txt +3 -3
  196. ansible_test/_data/completion/remote.txt +1 -0
  197. ansible_test/_data/requirements/sanity.ansible-doc.txt +1 -1
  198. ansible_test/_data/requirements/sanity.changelog.txt +2 -2
  199. ansible_test/_data/requirements/sanity.pep8.txt +1 -1
  200. ansible_test/_data/requirements/sanity.pylint.txt +4 -4
  201. ansible_test/_data/requirements/sanity.yamllint.txt +1 -1
  202. ansible_test/_internal/commands/integration/coverage.py +7 -2
  203. ansible_test/_internal/host_profiles.py +62 -10
  204. ansible_test/_internal/provisioning.py +10 -4
  205. ansible_test/_internal/ssh.py +1 -5
  206. ansible_test/_internal/thread.py +2 -1
  207. ansible_test/_internal/timeout.py +1 -1
  208. ansible_test/_internal/util.py +40 -12
  209. ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg +1 -0
  210. ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg +1 -0
  211. ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg +1 -0
  212. ansible_test/_util/controller/sanity/pylint/config/collection.cfg +1 -0
  213. ansible_test/_util/controller/sanity/pylint/config/default.cfg +1 -0
  214. ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +61 -7
  215. ansible_test/_util/target/setup/bootstrap.sh +31 -0
  216. ansible_test/_util/target/setup/requirements.py +3 -9
  217. ansible/_internal/_errors/_utils.py +0 -310
  218. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/entry_points.txt +0 -0
  219. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/COPYING +0 -0
  220. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/licenses/Apache-License.txt +0 -0
  221. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/licenses/BSD-3-Clause.txt +0 -0
  222. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/licenses/MIT-license.txt +0 -0
  223. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/licenses/PSF-license.txt +0 -0
  224. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/licenses/licenses/simplified_bsd.txt +0 -0
  225. {ansible_core-2.19.0b4.dist-info → ansible_core-2.19.0b6.dist-info}/top_level.txt +0 -0
@@ -3,48 +3,58 @@ 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
8
- ansible/_internal/_ansiballz.py,sha256=OL2FCN0jOjg1a8diutsNcs_mr0dqO7SgJPmrYCKfo1Y,11649
9
- ansible/_internal/_collection_proxy.py,sha256=F7sde4HIxwZVszF1bYkbcNvNsy233rAEjn2OV5ENx90,1235
6
+ ansible/release.py,sha256=JswH1hvAAlWA7wf3vWeBzHfADI4PFqvxZzsk26kKSAU,854
7
+ ansible/_internal/__init__.py,sha256=J3yCEAZoJLwxHMPEIWHwX6seRTCQ4Sr7cfHSw11ik9k,2208
8
+ ansible/_internal/_collection_proxy.py,sha256=V3Zns3jdWR1hTP6q4mrNWoIKL67ayiQFPDOb6F7igsc,1228
9
+ ansible/_internal/_event_formatting.py,sha256=cHMsuYi6v2W3fgEYdKLSe8O34kW5bZE26zyj7FOt268,4222
10
10
  ansible/_internal/_locking.py,sha256=8jMXsKSNCKVZRUesZWb5Hx45g9UVVZ9JXUa_fq2004Q,669
11
11
  ansible/_internal/_task.py,sha256=NCEF3sPxt99n4Gk-e00A9Ce52duffThJm0qlmgkm0nQ,3293
12
12
  ansible/_internal/_testing.py,sha256=WCEwZk8_NP2f2LoY2zjh6VIw6d8bPoFspvfP3-KQMjQ,825
13
13
  ansible/_internal/_wrapt.py,sha256=CLgu2S5V4NmJ9pPFIKarhqiiwAQxni5ISgr-TxARWuE,37963
14
+ ansible/_internal/_ansiballz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ ansible/_internal/_ansiballz/_builder.py,sha256=eRmzaY7wxf5EeZ-cGdZnj3bk9lcCRGpRa9YKZmM1VjE,3562
16
+ ansible/_internal/_ansiballz/_wrapper.py,sha256=xWgDbVAP1zA66_iUBAvM9HNtDAxYVYkOfPpJAflGdlU,11780
14
17
  ansible/_internal/_datatag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
18
  ansible/_internal/_datatag/_tags.py,sha256=8ZLQUX2ggTQluwtLfFbNKa9rKNpxRhqalRzeqSUda2Y,5180
16
19
  ansible/_internal/_datatag/_utils.py,sha256=YCtUuzsEuu-m_WuDky8JKvbp432xJ7S-UJQPqeY5Ckk,782
17
20
  ansible/_internal/_datatag/_wrappers.py,sha256=MNF_vK0Ib03U56T5W0sFbshV6RlV1gfuN6YhpVxVAIg,1137
18
21
  ansible/_internal/_errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- ansible/_internal/_errors/_captured.py,sha256=UXIzFiUMZVAGYlrc2dBJDmRYYDLgj6zOOSaLth7Br5Q,4919
22
+ ansible/_internal/_errors/_alarm_timeout.py,sha256=2rPudAmEzDXAnXBZM2sBa7L3w0r3qriRchtomWrdv9w,2519
23
+ ansible/_internal/_errors/_captured.py,sha256=SLq0F5sHKlRpboo5JefBPFkGyPZkI2EFZycVyF5y1oA,4499
24
+ ansible/_internal/_errors/_error_factory.py,sha256=mu5V16XfB9KbrHyo6TfVWtXVkXNA8G5vg_IVzUNBY3c,3548
25
+ ansible/_internal/_errors/_error_utils.py,sha256=P8sWdmQxZ4UFJ1jfmRVgkdZ_xDYZ3nDNqIfZNK9yihY,9141
20
26
  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
27
+ ansible/_internal/_errors/_task_timeout.py,sha256=CN5J2eKa42cyahXC0IMrliwQAF7DMwNvdaJmzSqPBsk,923
28
+ ansible/_internal/_json/__init__.py,sha256=X5QL0n8wbgR93jx3TPuQRd_MIfvzASO8ekzTmCRBqac,8796
23
29
  ansible/_internal/_json/_legacy_encoder.py,sha256=clXiPnJ2aR5McuSbajugTPW2wav1wwklivxDKWZ1iFw,1646
24
30
  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
31
+ ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=SVTQ59kZiO4YSVqewTz4qcfj-5iROcO5bJrE0DlHei0,1913
32
+ ansible/_internal/_json/_profiles/_inventory_legacy.py,sha256=UGPOuvu_x3Z1lAvkca36ZRX0v0D1j_FCZd28y5BK_jM,1083
33
+ ansible/_internal/_json/_profiles/_legacy.py,sha256=EepGJPeg-Q4o5pGuJkxGEod3Q_qd8zasNH1a1GRo35E,7555
28
34
  ansible/_internal/_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
35
  ansible/_internal/_plugins/_cache.py,sha256=jwVeVm-ZJJaNqdyq7aS4Zt41C6VKyRO_DdwXaVBXWGc,1989
30
- ansible/_internal/_templating/__init__.py,sha256=ABL3nrJpUrYWkU7ZDLPPU0ReEx8GubISi73iaEmfS0k,477
36
+ ansible/_internal/_ssh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ ansible/_internal/_ssh/_agent_launch.py,sha256=n3mBv3pPTz5zSUH3-YQIP6ImUKO6AV2tCLEp4SliGBE,3439
38
+ ansible/_internal/_ssh/_ssh_agent.py,sha256=lGATyCqYBK3JtYBzTwyPazRfXzpxaassVxfK6oGR1iE,20718
39
+ ansible/_internal/_templating/__init__.py,sha256=78wbU8DM2Wk7sfJqp72bmEJMs7hyQ5k-a-G9QMN6kzs,506
31
40
  ansible/_internal/_templating/_access.py,sha256=dse4dr0TRpZdRbZLfg0VJ7wigNm2iS4DA-JEK6LoTLc,3467
32
41
  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
42
+ ansible/_internal/_templating/_datatag.py,sha256=HuOaYtpmXYZkTDVVVz5lO3E6trowAIp80P2BN-UTyHs,3903
43
+ ansible/_internal/_templating/_engine.py,sha256=1-674lL9t4B0t93Ny0a9ZklU4bNkFefzNCAhNiFTOew,28155
35
44
  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
45
+ ansible/_internal/_templating/_jinja_bits.py,sha256=KF-tPGLLGsSXogMBQMKKL3JU_ssVtW6VMtzioXgJhKM,47568
46
+ ansible/_internal/_templating/_jinja_common.py,sha256=wTTLtFmVDy5as1DK_94BmVUrvz46BhJDlICFy3qUMmY,11760
38
47
  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
48
+ ansible/_internal/_templating/_jinja_plugins.py,sha256=BJUipK95fR61IHIx3dqmq6JZdbBGifItMeT979ocKEs,16146
49
+ ansible/_internal/_templating/_lazy_containers.py,sha256=dq7jPLtHJ42mNarYmROc2GES3IFQB2X-eIxp6HQtj5M,27159
41
50
  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
51
+ ansible/_internal/_templating/_template_vars.py,sha256=nQODzE_SeCYFuGpdUoEI6b3saJSddDVWCiOtY8n6ouY,2585
52
+ ansible/_internal/_templating/_transform.py,sha256=07wo45Epm-ZvwgIEWjeFi4W3LHJUEXbDzXq4JWziq3s,2747
53
+ ansible/_internal/_templating/_utils.py,sha256=7DYmkWZ4kInyeoLjLne9DR1LmOzDg_Dz0x3HkB6oxWE,3711
44
54
  ansible/_internal/_yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- 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
55
+ ansible/_internal/_yaml/_constructor.py,sha256=8T8MGiopbRJf8vUIBPFzQXqOlmvioeyFLFar0fV6GUE,9843
56
+ ansible/_internal/_yaml/_dumper.py,sha256=FywWfP1DDYI7JoeNLUPpLUOMhzF50Mm4A8GEBaruRYE,2601
57
+ ansible/_internal/_yaml/_errors.py,sha256=qx0ViQbUdG9jnac3JOir2ZfT9B_-N7KJY-hZvPw9EHY,7797
48
58
  ansible/_internal/_yaml/_loader.py,sha256=h6pGkmFV8cYLrQKJExL0FkVcGHXN2uoCMmJX2SgP078,2436
49
59
  ansible/_internal/ansible_collections/ansible/_protomatter/README.md,sha256=IyejgfHj83nAH19YDcLC391EbcxRzGkVR-67-zkxnIA,612
50
60
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/action/debug.py,sha256=Hpdd8wDpE5N0UbqQbCZUVGFpyw01LDvmMG4R7uP27GQ,1469
@@ -55,8 +65,8 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/origin
55
65
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.py,sha256=jumCgi2BVy80WgAyHMuVGTIqINN11pt1S5bkUJsF-y8,552
56
66
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/python_literal_eval.yml,sha256=HEdQ0Piu587suBfaC0dpUaH9czCZOgRKFSeSW16Bg0Q,1445
57
67
  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
68
+ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/true_type.py,sha256=tNuCQfdkYT3tnHo_iQ7HFJfxeng89XawPEhLvRxY7tQ,457
69
+ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/filter/unmask.py,sha256=yd3zHdxfg8RJ3YmKJ9lJOgTFOfpJzBuDNCdzodoMOKw,1745
60
70
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.py,sha256=wvulF1t5DoJixeuvx-Ba8xbUInKmDCBASqOU9xySHjU,818
61
71
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/lookup/config.yml,sha256=DVc0oFQdZ2go3tkszKhbSo535rDbP6inId6IOMtVdUU,30
62
72
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.py,sha256=Zt6et3ahLkJ6bmgLbBP7xFhTkavUuT-xfLhdKa6T-sc,319
@@ -64,62 +74,64 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.y
64
74
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.py,sha256=A6vLIuZMi05Hwzvnm6mZ2besNBIoOGxcby4aM2zcD8M,453
65
75
  ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.yml,sha256=sRbc5UjNAelH023-mXpQ9z_-17i36-7L_0ynKIRb3EM,520
66
76
  ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
67
- ansible/cli/__init__.py,sha256=H62BdQKE6h82BIlz0MlOrMKqZE_Y2dW0n9HkqgUySv0,30733
77
+ ansible/cli/__init__.py,sha256=IhDWUd5D01C8P0HYlhr2UbnF-Dd06xYVCmB-bOtEbPI,27757
68
78
  ansible/cli/_ssh_askpass.py,sha256=hzDkbYV82KZHWTjbGCHvnDB3hWeYdwoXt-6kFkrkPHg,1365
69
79
  ansible/cli/adhoc.py,sha256=z1IyIKaYi3tc7BFhwUauPYEx7hZjM7N8K5M1xW83Q-0,8391
70
80
  ansible/cli/config.py,sha256=PJ9hQPhPaX4OsJ3Y6B5KOII0b09RieAJRg7-jD3jg3A,28607
71
- ansible/cli/console.py,sha256=jDb5rEDpRT1reDGZycXwobNN6hzGRFAPke6IHLd-5cM,22010
72
- ansible/cli/doc.py,sha256=NDM10-ZzKxDM_p3l4miDAiE7FhLGkKct021FJQzROYs,70642
81
+ ansible/cli/console.py,sha256=AfC_a55b5JMjJ3TmhXaC_f8W7gzi2ytZ-fIRgfXdu8k,22010
82
+ ansible/cli/doc.py,sha256=Qrp5n8M4bQChyQIvRYpVp-m4LTv8z19v-ReyGUgPO4U,73272
73
83
  ansible/cli/galaxy.py,sha256=ldWsmRxTCN-HXipw1TZvDRJjYLZDPwS_LYIKcEZabqE,95246
74
- ansible/cli/inventory.py,sha256=3nrD8YVpbtNXfdFCdUoMyMy6baPOyy1G4Ji8VEID-Vw,16293
84
+ ansible/cli/inventory.py,sha256=atRek-BmCrBIQqqqJ7SXxU5rZkmnQ4Rv9iKYuo2fdZE,16035
75
85
  ansible/cli/playbook.py,sha256=yPOYqwH5qcI6uCVI2k4GrSB0thWQLjlauJOD-sFx11I,10546
76
86
  ansible/cli/pull.py,sha256=Bvc59o9KbLRlcKTCb_pzr-vcs2owDuThpQJlK05xYM8,18425
77
87
  ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
78
88
  ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
79
- ansible/cli/arguments/option_helpers.py,sha256=7fJuJ0dq_nC6M1BoOicu92lNhbRwD2379JOniqEbDc0,24445
89
+ ansible/cli/arguments/option_helpers.py,sha256=8noVj3Oatvk5rQNi5l2a4J5MyS_N5EtsNg5HbAILR2Q,24455
80
90
  ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
91
  ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=Wz413NyoBudEJdQt6pw2UAB4IveHQma4XoHBzFSENt0,13122
82
92
  ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
93
  ansible/collections/list.py,sha256=PhQU6f7-bieg892uWnSg_8Cg4etbDnQUbR5a6SOnydk,2873
84
94
  ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,1002
85
- ansible/compat/importlib_resources.py,sha256=oCjsu8foADOkMNwRuWiRCjQxO8zEOc-Olc2bKo-Kgh0,572
95
+ ansible/compat/importlib_resources.py,sha256=75SJApiBzBKuBDknj81vdfzSJSxc2Pi4YvgQkmmGtew,542
86
96
  ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
97
  ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
88
- ansible/config/base.yml,sha256=Vy4Y6wDVN-7lnVzvTi2pWbQFZrCn9nkiGejXt5DWGWA,88674
98
+ ansible/config/base.yml,sha256=kUcNkZlaZvLoc1nK-GPOJWRnFjR-2EG6ZnCqoAvqFG0,90481
89
99
  ansible/config/manager.py,sha256=CC-JhhK4KN07rvXAfiex4sxjFSVtxsLx6E_YnpEOE88,31123
90
- ansible/errors/__init__.py,sha256=7nJsA0zFSesC3xVN_qf4-47VQmZ4eWi6R9zTEBW7gUY,16111
100
+ ansible/errors/__init__.py,sha256=W1s19PaheqXMI2yKnZCuaKKjSAJRPgU1_xF2_J9B1NU,16353
91
101
  ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
92
102
  ansible/executor/interpreter_discovery.py,sha256=UWeAxnHknJCci2gG3zt6edx5Nj4WbHYfJVcmW_DzItY,3858
93
- ansible/executor/module_common.py,sha256=gr0Rz-gSE-cGKLms-G-PejNHNE45K0e792C2vXMDspA,59432
103
+ ansible/executor/module_common.py,sha256=6nIy3HAZMaOS5Z_saylD6giieamECbR-v6emGn_ZZ50,60313
94
104
  ansible/executor/play_iterator.py,sha256=OY0W7x3F7VUQCjWIogkPqhvm7SFnxOXR5anlqJjHeHY,32282
95
105
  ansible/executor/playbook_executor.py,sha256=5wjvqw22RG4g_JlYDQnLFrUEa8aYQBWdgKhEpNonhKQ,14806
96
106
  ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
97
- ansible/executor/task_executor.py,sha256=EJhxQCtz4W6ERZ78o1_xm1h6bMQUwYZoCFKqw-PKU6c,62608
107
+ ansible/executor/task_executor.py,sha256=_gxdNInyouTOxJOTz3TR4x4DL0OJ19CG4X3SWEzJBKw,61234
98
108
  ansible/executor/task_queue_manager.py,sha256=aOO0CLUx6zDHG8836NhNVvxf2aZBe-8RVpKtccWXHDs,20785
99
- ansible/executor/task_result.py,sha256=GEo2atii06heQ_4eP5BaajpA6nAreEKBVt4cqXr8LiY,10293
109
+ ansible/executor/task_result.py,sha256=o5WOFTezMKBFpehg6SIqsAEGHiY5YONHYNo-kqse1aU,10253
100
110
  ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
111
  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
112
+ ansible/executor/powershell/async_watchdog.ps1,sha256=assMNPnHxYghXI1u_Ty7ioKwAC6Xu0MEzNzLDEiVTl0,3622
113
+ ansible/executor/powershell/async_wrapper.ps1,sha256=ad3dWEWj4ahH9yfvUvK4V7F5FzXwk2riAmWhPckTb-8,9112
114
+ ansible/executor/powershell/become_wrapper.ps1,sha256=z3L2RcabnwQhsEehU6NkRvGZSKVbdTTdDOMYPhr3y2Y,3864
115
+ ansible/executor/powershell/bootstrap_wrapper.ps1,sha256=11xDPllLkSRfYeSqcAAYu2DkmlKMSMDpwcRU2VwfEUs,1669
116
+ ansible/executor/powershell/coverage_wrapper.ps1,sha256=U06ON_TDYvUsrxEyIamttCaGwVcZGgPmNMnIUn6Zr7E,5024
117
+ ansible/executor/powershell/exec_wrapper.ps1,sha256=A_hiXBlQtccZbHZmXEzuYxg9JqKvEiiQsx9bHshvL-g,24782
118
+ ansible/executor/powershell/module_manifest.py,sha256=GbEWDVypSlHc24cW2XdWAHGX-nqwRC-TGfYKCZEVkro,22968
119
+ ansible/executor/powershell/module_wrapper.ps1,sha256=nHMsfUXPj7LF2JmQ1uM6ElLWymzxmlcp_Kl4ZB2u2AE,7306
120
+ ansible/executor/powershell/powershell_expand_user.ps1,sha256=yeaBvoRjUKiTOXWIDj3IYk0GxMNCupLzQnQZZhdOF3w,446
121
+ ansible/executor/powershell/powershell_mkdtemp.ps1,sha256=FKWKiiP5WloodSVK6EJb9JY-SQS07xUKmzqkPoA2YKk,393
110
122
  ansible/executor/powershell/psrp_fetch_file.ps1,sha256=2735Mhr-3BWolq1JDr-wKQfM4cgdzm8QqVgh5DRIEkw,838
111
123
  ansible/executor/powershell/psrp_put_file.ps1,sha256=D4cQrxpOTdjJXAh7DP3-J3AVZcUknGnxCz_XW5gtup0,3694
112
124
  ansible/executor/powershell/winrm_fetch_file.ps1,sha256=wOgnMGFwNhq9c_-8kuGBNchGj69R0Udv-am39M3BEDw,979
113
125
  ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVzxsS13ZwTXrx7krlgU,834
114
126
  ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
115
- ansible/executor/process/worker.py,sha256=i9K7ngnDyZfA-RJCKLFkuh1iHLQOL22LOpqs37bmyVk,12963
127
+ ansible/executor/process/worker.py,sha256=naHBOczo6w0ah2j3e843K1hzReQp9WYY9vspx0cH5cQ,9450
116
128
  ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
117
- ansible/galaxy/api.py,sha256=KGz_0HTScEJKXC9bInwPsGb-Bv3YSpUr2jWmGZLtDD0,40467
118
- ansible/galaxy/role.py,sha256=QwOkaguThfzlThtrtFYCr7Tyoa4FBVL2R3n5jZinHNE,21036
129
+ ansible/galaxy/api.py,sha256=P92qqBoX_r4i8iI21a3dWlWkANTMfhmPVv4i-sxQ9qU,40406
130
+ ansible/galaxy/role.py,sha256=_vEN3TDVVlvj38NdcS5KU-fe-gKSsks-Gg6O16ukcHU,21029
119
131
  ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
120
132
  ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
121
- ansible/galaxy/collection/__init__.py,sha256=GCeDj1XUQaxLDMxPS4u5yYjAaU5A4rCj6MUb7zNsZbQ,78987
122
- ansible/galaxy/collection/concrete_artifact_manager.py,sha256=NpvbVoLI5nyEXaef2LwAqQjXCGa8HeMiBz2DY-vKyjQ,29367
133
+ ansible/galaxy/collection/__init__.py,sha256=VE81lWGmHUWmpl8yDR-mvh0N7ZwCe-LIzVegMIza34c,78776
134
+ ansible/galaxy/collection/concrete_artifact_manager.py,sha256=1xPbeHUVRukS5xWiEQAJtrmNrCZGUp3JOjQx_QTZ5Ug,29248
123
135
  ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
124
136
  ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
125
137
  ansible/galaxy/data/COPYING,sha256=vy2E-bFAhZlTU_NCyMSIACNWl7yJSECGdWrRncQ1NWs,1005
@@ -196,71 +208,80 @@ ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,104
196
208
  ansible/inventory/group.py,sha256=_4q692djOZmJjk2x2UQuS03lSst8zCucJnq9kVZ2uks,9351
197
209
  ansible/inventory/helpers.py,sha256=8DaVEdMhIfan6Fy65AoHO3rILtl3mDzxei4_j8r4fp4,1556
198
210
  ansible/inventory/host.py,sha256=Zzod7oWrsrCfv4v8oOu40ASEsrlk3IIZH4WtGs8rbU4,4654
199
- ansible/inventory/manager.py,sha256=bZppxa0x0aLvs801zhn1f0fNQhPszKFcvbAjWZmMjes,31812
211
+ ansible/inventory/manager.py,sha256=fxg2sq7s-VBJnn9TvJCgv-xvYIu0DLJTix_y3w0wLcc,31811
200
212
  ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
213
  ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
202
- ansible/module_utils/ansible_release.py,sha256=IXr3OR35RyOVLr9l3eiSI-Lq37a-X2gZPSBHSI-O6r8,854
214
+ ansible/module_utils/ansible_release.py,sha256=JswH1hvAAlWA7wf3vWeBzHfADI4PFqvxZzsk26kKSAU,854
203
215
  ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
204
- ansible/module_utils/basic.py,sha256=e92CZBmokHTcQG-gcmxHZ8efweBMDalcoTAg9rJ-J9M,89711
205
- ansible/module_utils/connection.py,sha256=EYcZ-JJ3GnCb8Hhdan2upLJfgfQGvzpPUHNY_qVXyKw,7675
206
- ansible/module_utils/datatag.py,sha256=17e-G9STbcSX6T4QYGU4UEXIp2a-syeOPbtoI6ehWWg,1485
216
+ ansible/module_utils/basic.py,sha256=anO1C76jwU42VKv82bCeqNsgpFoWhujk6WCFLzDlVc4,89992
217
+ ansible/module_utils/connection.py,sha256=ZwtQEs-TtT-XecoEmFWiDevSkJLIj348YkiW6PP7G9E,7471
218
+ ansible/module_utils/datatag.py,sha256=tEwBXm75G_Hrk7I0dj_B1htFmIFCGDB_ifO-3MPPSHs,1659
207
219
  ansible/module_utils/errors.py,sha256=cOVAUZaQTeYaSGhKnYsT3L8vshayQHbCXzkT6HIVi_o,3345
208
220
  ansible/module_utils/json_utils.py,sha256=DzkQvlXMD_clOPxRXv7rZwAwMAUii3XH_MvhS4ab39Y,3403
209
- ansible/module_utils/service.py,sha256=Dp6mBQfptTtVIot1ehKRkkt4wYLKUNVEfVFffpopR4E,10159
221
+ ansible/module_utils/service.py,sha256=tjsQW8jbaCXr7hG-echcnCASdbdrlmAK2kfb9SI7R_g,9797
210
222
  ansible/module_utils/splitter.py,sha256=MnvQVnEZ_ceiso1JsesGjaK-PTKcSPOd2FH9FKX8wLA,9468
211
223
  ansible/module_utils/testing.py,sha256=BbQdvHibcqCtze3XrX7eXYbyGF3UKRmNqfPviosSVNk,1144
212
- ansible/module_utils/urls.py,sha256=Gr58U25lr79T0e58Lu23GfDFsXK1UDbKLgMNiQ-_j6c,55670
224
+ ansible/module_utils/urls.py,sha256=1dRhIzsH2LcVlyqbZ0Bq7J_n6d02sQCmHyQHd0-yi8s,55643
213
225
  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
226
+ ansible/module_utils/_internal/__init__.py,sha256=zCUoK0GPIBa-O45g5CLZkXBASFcwLrkuZnh6ljdWIto,2124
227
+ ansible/module_utils/_internal/_ambient_context.py,sha256=sZe6kovlSCfiqZm6T-AX_kgKuTaLf8KP7a5gTVf9fV8,2579
217
228
  ansible/module_utils/_internal/_dataclass_validation.py,sha256=TmPBK90g8Vvizlvu-UIrobgALH0l3LHrFUiysJfyRC8,8684
218
229
  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
230
+ ansible/module_utils/_internal/_deprecator.py,sha256=FEfZZdoC77ocrnRpmRpD-1YSdcc9c8k4gfe0WhacOTg,6869
231
+ ansible/module_utils/_internal/_errors.py,sha256=tOCafo3QVr_lLKoqfD-_H4XzQN60mtpm92l9D_NF4nI,3914
232
+ ansible/module_utils/_internal/_event_utils.py,sha256=tW8DBWWLNAOmOH_Xmjm2yTc-zFCn3AO5IL4f-OY67NA,1978
233
+ ansible/module_utils/_internal/_messages.py,sha256=8pgv4VLn-CJQZ0h2wCRpeHuht_tuwTyxAxzmIbDw7X8,4307
234
+ ansible/module_utils/_internal/_plugin_info.py,sha256=09eBm1K0ee11kPT5Z6R2f7_SPq0gjI1fwYF8FTidUNw,1042
235
+ ansible/module_utils/_internal/_stack.py,sha256=Bva6lJ6A1153O3Kkha-9hxgFDqSbinz-JEYoKMCB3qE,630
222
236
  ansible/module_utils/_internal/_testing.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
- ansible/module_utils/_internal/_traceback.py,sha256=Zo-ZgS1Hi9grjIX-0n5hhgodgaKTiqOoe2vAWAe-tZU,3681
237
+ ansible/module_utils/_internal/_text_utils.py,sha256=ilp5D5VQxpWhFdGayTioN6gqzUpQlUFiteygwZ-mP_o,263
238
+ ansible/module_utils/_internal/_traceback.py,sha256=ANiTQtAX3NfL10lW6EPU5f5s5QH9A6pam3dgfA-9Btc,3650
224
239
  ansible/module_utils/_internal/_validation.py,sha256=8CKgc_ha53EgtrPCVjOU6GvsARj09U67Ys2vvhQWS6c,558
240
+ ansible/module_utils/_internal/_ansiballz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ ansible/module_utils/_internal/_ansiballz/_loader.py,sha256=FpWtq6yZe_oXEJOf5k0NYNq9XcL3msa6Yz4w_Dko0sg,2912
242
+ ansible/module_utils/_internal/_ansiballz/_respawn.py,sha256=ghOGtLkQKsuGGvpToihkuE5pDx0z6GBFustkUu-u_A0,678
243
+ ansible/module_utils/_internal/_ansiballz/_respawn_wrapper.py,sha256=Xz6t6n9RrzEQ3BFwSZUdTzBQUZODvebXQEHWOsUHnQM,491
244
+ ansible/module_utils/_internal/_ansiballz/_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
+ ansible/module_utils/_internal/_ansiballz/_extensions/_coverage.py,sha256=pDEqFOxN7xoO6rTji8IcxUdcrmZgB62tp2OSaU0KRdg,1297
246
+ ansible/module_utils/_internal/_ansiballz/_extensions/_pydevd.py,sha256=Kd6XePQO3DIn8Br2201gNDMm5n89VqnXxWPDr2OZOkA,2512
225
247
  ansible/module_utils/_internal/_concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
248
  ansible/module_utils/_internal/_concurrent/_daemon_threading.py,sha256=okMP5QPoU9YhYMQF31tUJ6ChyiXJHF-6TD9t6nfjKWE,1085
227
249
  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
250
+ ansible/module_utils/_internal/_datatag/__init__.py,sha256=UoUnQUbIAMo20H5mZ2rH_nM9eaM4d0nCq2rVjcISJYE,37230
251
+ ansible/module_utils/_internal/_datatag/_tags.py,sha256=Rkze_LoP5-BUYsoAJjv5ojcplHsGp6MhwER95HQvRqY,468
230
252
  ansible/module_utils/_internal/_json/__init__.py,sha256=KscFIf_fl3-TTM2fe68MwETHZBCxf83nZrsbVhqkpEM,2181
231
253
  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
254
+ ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=r7nYDwOlVrDZf6Sf05nxZnrBX-sCcDqi4HFGBqOnXn8,16975
233
255
  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
256
+ ansible/module_utils/_internal/_json/_profiles/_module_legacy_c2m.py,sha256=D2Gau2wGVEpphcvik8jwVacr-zSSWqozkQLBTbJ0RjQ,1154
257
+ ansible/module_utils/_internal/_json/_profiles/_module_legacy_m2c.py,sha256=iWW_R2TadLiUPyWDkvGDRwehX6b7LWPWkqdYzIAQslg,1581
236
258
  ansible/module_utils/_internal/_json/_profiles/_module_modern_c2m.py,sha256=C--vG1dgfVd1hLFj8M4ThpGtsTp5Osfcf5oTtblALlQ,1202
237
259
  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
260
+ ansible/module_utils/_internal/_json/_profiles/_tagless.py,sha256=7Ic882IROz3ti8ruBMB54qhpRyWR_S8ZYh23hsWL8i4,2207
239
261
  ansible/module_utils/_internal/_patches/__init__.py,sha256=zNEWEYnuQyFovxTN3UIjzwgVNgus85C_GzVk7ZOWpgQ,2565
240
- ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=RXSotSQGSHQ4VTcQXRs1s4rsQUbBbeTp7EO0WFCctxw,2395
262
+ ansible/module_utils/_internal/_patches/_dataclass_annotation_patch.py,sha256=gj9hhy2bg2KCUgkrIEEzAwLJ4R-EvJbnZsuSlO-cJHE,2225
241
263
  ansible/module_utils/_internal/_patches/_socket_patch.py,sha256=3vVyCy-rCedETOMFibzhookih-7YsYBsue9YurfIeVI,939
242
264
  ansible/module_utils/_internal/_patches/_sys_intern_patch.py,sha256=ym-ZcAG56i41tr6VMpn8hWrNt10HsAvAF9Eiy5PZHWU,849
243
265
  ansible/module_utils/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
266
  ansible/module_utils/common/_collections_compat.py,sha256=476Gfp4DP1g5ssOW_P-FFakUxC7palI_1TIBtnDBsfk,930
245
267
  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
268
+ ansible/module_utils/common/arg_spec.py,sha256=qfosoeoqVhTJ9shZT2Bvg7xh5cFSZiqjaQKXeOasbV4,12354
269
+ ansible/module_utils/common/collections.py,sha256=fmrKF_dat5DTzMfoeVas6iGW5DrX_fjnhQAk4jBfDB8,4005
248
270
  ansible/module_utils/common/dict_transformations.py,sha256=OEb7uuXpAErRp69aMW8KFng0qVBYqIR3133cFWQ5VeI,5525
249
271
  ansible/module_utils/common/file.py,sha256=LyBp_C_nbcsalY8biqQ_2WQ_ZT1iXe8ub1nNv5alI84,2982
250
- ansible/module_utils/common/json.py,sha256=i5CkEU4lXiiKsnK3Pwy21yjRTLWHVLkoMDfkN9fwXjY,4048
272
+ ansible/module_utils/common/json.py,sha256=4M_1BjxFdX46-Iq1lNmb-4SLS7z5OXSLo6-lm4ukx3Q,4046
251
273
  ansible/module_utils/common/locale.py,sha256=X-z_wjmd1ipcWRAahfcDKXr3uxMRqwnvALUS1fQ4XaE,2296
252
- ansible/module_utils/common/messages.py,sha256=adW8JzA6Kj_efal-P1d6k3LJ7eJ2opPmperzgFVDpqk,4727
253
274
  ansible/module_utils/common/network.py,sha256=ffFrBriNPHFDslP54NRN3QaJADEWBG7eCgv5c7RcOHs,4226
254
275
  ansible/module_utils/common/parameters.py,sha256=cTPoF2XceWvaqcr1Cks0r4yq3PLPhELAGooY4G2MJOY,37484
255
276
  ansible/module_utils/common/process.py,sha256=4Iantrh13r_70oKljgoMeYi4C0EpjqQawLcbKcvxw9o,2234
256
- ansible/module_utils/common/respawn.py,sha256=bR381qAFnXdhneNc6EEaBgbZaiNt4QGEJ0tHoNMtsHk,4250
277
+ ansible/module_utils/common/respawn.py,sha256=6YmopsVdkIcMoE9L2GQBpyuQe8Nm3C0HlqSqSdSNizo,3340
257
278
  ansible/module_utils/common/sentinel.py,sha256=aPX7KPw1PifJX9wq8qfStEU5oiEPmOJEn76I_08vsjo,2372
258
279
  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
280
+ ansible/module_utils/common/validation.py,sha256=GNGH0S7OvlJ35AY1PQDykiEawT0B1uviVTetLmYj6to,20180
281
+ ansible/module_utils/common/warnings.py,sha256=E94FJ89RQweJue2ZqdGlWyGXtj8VAmXmmiCGF9Ix-HE,5103
282
+ ansible/module_utils/common/yaml.py,sha256=H-XGTe9sZlNunlTgj2kSPC7nSXOY6NDGyhc1Era_VGQ,2899
262
283
  ansible/module_utils/common/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
- ansible/module_utils/common/text/converters.py,sha256=agSrDCyyMflgpLkpLDxePyadQc-vpbM4RN31dgvKwxw,12141
284
+ ansible/module_utils/common/text/converters.py,sha256=37fSfGQs3XjHOEMmGG4SVEE8hMlNuO-QAwn9RN_5Mfo,12138
264
285
  ansible/module_utils/common/text/formatters.py,sha256=6r1gHFGWVLPHdUloc89tUjx_TJvjeC9NKJmen4hV6Tc,4502
265
286
  ansible/module_utils/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
287
  ansible/module_utils/compat/datetime.py,sha256=7exiAHnMJESffXSDcqooSLL1CyYImeFS5iOp4C8erCQ,1444
@@ -284,7 +305,7 @@ ansible/module_utils/facts/compat.py,sha256=CyvU9K945CpuYafb1uccTRjDxNLnZAYPMIEP
284
305
  ansible/module_utils/facts/default_collectors.py,sha256=jmsjDEr_ahMPnhrRuPPlBqhkQSGBvNUwwtaqc7d3tRg,8348
285
306
  ansible/module_utils/facts/namespace.py,sha256=g4OEoCfgm2MRumR5iPO7fZRS7lMv2ArQQE7LFUR8zPY,2313
286
307
  ansible/module_utils/facts/packages.py,sha256=V_95aIcw3ZavcVxNCRaqcLY6Rv2gYG3l0RZagIh6Apg,4410
287
- ansible/module_utils/facts/sysctl.py,sha256=5G3MFADNgY-KvmFJLtCOXMVqnUYFBLZm9WTv6YS6i5I,2035
308
+ ansible/module_utils/facts/sysctl.py,sha256=dhbwJtzVAmIJhs-0eD4XWPTGSnWfGyS79Th77Alj3YU,1969
288
309
  ansible/module_utils/facts/timeout.py,sha256=rGOnkMaLIvrCDKfCJeQ8ref9jah4tsDzd24KZ-BFPS8,2453
289
310
  ansible/module_utils/facts/utils.py,sha256=LXvJBKvtTCqGthWhTjYrRxFrG5B-vAEJz0jnN20iVSY,3419
290
311
  ansible/module_utils/facts/hardware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -295,7 +316,7 @@ ansible/module_utils/facts/hardware/dragonfly.py,sha256=3KsbUJ-8IaPnFf22hE6YOX39
295
316
  ansible/module_utils/facts/hardware/freebsd.py,sha256=wA3tsE23D-V79NRojsySqpDz9sDuakna4RTEForGxoY,10021
296
317
  ansible/module_utils/facts/hardware/hpux.py,sha256=W70ZZjV-_dv9JZfs77e31TYIIGEfGDxJxbVOIac3otg,8504
297
318
  ansible/module_utils/facts/hardware/hurd.py,sha256=EvR-cvhLazQef0iWucWXjBQt2hnnuG4lEvEXDEVK7dI,1700
298
- ansible/module_utils/facts/hardware/linux.py,sha256=jWb7DcjSYUrGyhYedZDIMTlGcinQyzjpaH_eHyFMpYw,37316
319
+ ansible/module_utils/facts/hardware/linux.py,sha256=BMpwR39i8AjuiB1zf1FZbTgqNpiU0uH2tG5cknPO-OM,37316
299
320
  ansible/module_utils/facts/hardware/netbsd.py,sha256=v-KV6uOQMRwVInKsyzzBJ1pIEcJt9oaRClzUrqLYzTY,6234
300
321
  ansible/module_utils/facts/hardware/openbsd.py,sha256=SWPUp08-5OxVz_OZ5pmexTKa-m2yv0p_k6Sn_fMZhRs,6934
301
322
  ansible/module_utils/facts/hardware/sunos.py,sha256=Z3u8utZiBtf7kKiAwznyERCzTBZs4Y8P2qsksfRQDhc,10609
@@ -320,16 +341,16 @@ ansible/module_utils/facts/other/facter.py,sha256=etaxYl5NkfOp4uEcY4xcPxJ7EDLc7m
320
341
  ansible/module_utils/facts/other/ohai.py,sha256=KFETeJpmQnOFm-0pbu0DWx4cMWjrVb3dyZ4iglj9oqk,2265
321
342
  ansible/module_utils/facts/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
343
  ansible/module_utils/facts/system/apparmor.py,sha256=OB6f2HMnTRZqqwJaTFkPaXVhFrJXKoxUCDf9VeH0aC8,1297
323
- ansible/module_utils/facts/system/caps.py,sha256=ivWnrNR_L-Qicc9mCLjzCNahPgChaI8X8J8w4rIBzlc,2405
344
+ ansible/module_utils/facts/system/caps.py,sha256=OdxIGhqVdYHrMfPesex99PLu2-7jN50fsu1w2G51n9s,2409
324
345
  ansible/module_utils/facts/system/chroot.py,sha256=-95UvBeowED7_5-lM8-lbB8fspCvK37omufu-IEyrm4,1488
325
346
  ansible/module_utils/facts/system/cmdline.py,sha256=jlBoYdenGUy2ooiATuudP4cYsVVcynKOVlAPOpQndAQ,2608
326
347
  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
348
+ ansible/module_utils/facts/system/distribution.py,sha256=_U2OhmIywKu0bwtkAycRHMeVQvlD0aeNTXkG1giPMkI,33543
328
349
  ansible/module_utils/facts/system/dns.py,sha256=N_dGrdB6B7TLfD-aiNqZTs7BnNIQopgPm-wxyrH2jxw,2664
329
350
  ansible/module_utils/facts/system/env.py,sha256=tyVvRA9OJxWbODBu309C2n6DvaXG9wrQG-bKril2C38,1156
330
351
  ansible/module_utils/facts/system/fips.py,sha256=9zdP23yXfY4re6Ut4OeQVYO31JkKoy1kD-HeQdSLZ5Q,784
331
352
  ansible/module_utils/facts/system/loadavg.py,sha256=X9Z3ngxjfg_Yr73dG5m4WcMWGpzv7DTeF_uF7GZmzt8,740
332
- ansible/module_utils/facts/system/local.py,sha256=cbw0iggET4Yui2fwd24bqHI9Lz6GESekLXMIU5hK5xM,4016
353
+ ansible/module_utils/facts/system/local.py,sha256=nAc6yGJIxn1TaSOFaSgF1IvN1XdMBywajSggzYQIddo,4005
333
354
  ansible/module_utils/facts/system/lsb.py,sha256=Ovm9-xvOHyNH4o97I0MpCAGKxDaEHgyCGQd_KGYUSVw,3454
334
355
  ansible/module_utils/facts/system/pkg_mgr.py,sha256=q_dy9U4-3cCh-do70E_s-1wiiBlzmRryKuHcFK7tDuw,6375
335
356
  ansible/module_utils/facts/system/platform.py,sha256=96T3nZJlfVqG9FesKu0L9htVE_LegNknu3f8ZNP_BsI,4061
@@ -344,7 +365,7 @@ ansible/module_utils/facts/virtual/base.py,sha256=BijfSGBeCSdDzK2jeeQ2oymgupItCv
344
365
  ansible/module_utils/facts/virtual/dragonfly.py,sha256=fx8MZjy6FqfSpshxnPyGs5B4FezmYFqqTr1XibWWSeE,959
345
366
  ansible/module_utils/facts/virtual/freebsd.py,sha256=Wc3hjsxrjWnLaZFBX3zM4lZpeGy4ZS5BTOXTs9SRN-I,3018
346
367
  ansible/module_utils/facts/virtual/hpux.py,sha256=NLQfUpXE7Gh-eZFfLyugvnnJjWFIGv9xqjC_zV4DLKw,2823
347
- ansible/module_utils/facts/virtual/linux.py,sha256=UOtZzsbO6ENkj7-0X1SHOZ8DpyQB8RcZJh3mj4dxBHU,17851
368
+ ansible/module_utils/facts/virtual/linux.py,sha256=HKm-Eo0mJN62V4hZfEyvyfHg1x3dL7kA22_5Vr54_IE,17861
348
369
  ansible/module_utils/facts/virtual/netbsd.py,sha256=53n3E9vowi8kCbFyj7vDeKocZ3OU_TLVSKRJRU8SenE,2896
349
370
  ansible/module_utils/facts/virtual/openbsd.py,sha256=J8Ow7x3J5ZuHFThqAwIdAdTLV1V9vN_U965Q34TAvNA,2785
350
371
  ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH2j5KO3F5jKo3Ec,5700
@@ -368,33 +389,33 @@ ansible/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
368
389
  ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3859
369
390
  ansible/modules/apt.py,sha256=eMoHgh-4SWWu6d3VmxybzP-ACTi0sKaJOkMIqrh1Sjo,62708
370
391
  ansible/modules/apt_key.py,sha256=DmmNkVdRrhOCEhItsbXUA3TuAfXZW4A0CGZu4JeqL90,18485
371
- ansible/modules/apt_repository.py,sha256=AzJnzlImqU_ZWZVBMi9xAklzfMqqTOuuOH1Jp5m16pY,31529
372
- ansible/modules/assemble.py,sha256=4_Cy7mS-4Yhpz0pnj6sVes39DTlgzBLlfTKEsHCQ9D8,9271
392
+ ansible/modules/apt_repository.py,sha256=-ooaFMsY0kjOEsVfJcBLx_-_3Hsk0VRbWgVyj-00a2o,30687
393
+ ansible/modules/assemble.py,sha256=lq_OO3Ev89TlLXiEdFrNa7rihoqpSBRnDnSMHk4f_tY,9266
373
394
  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
395
+ ansible/modules/async_status.py,sha256=EnE4-KbUduCUm4sVhpmNlAEbCo6fA8fV4K9MWNnvG20,4742
396
+ ansible/modules/async_wrapper.py,sha256=vou6ixJkVeKCpAZkqEkQgtyc2-QGQSgL8_MBlMRUiFE,11853
376
397
  ansible/modules/blockinfile.py,sha256=CkzCw73Kbkvgb763C1x_qUMkf6UdJJsyZC_Kiy85Unw,15450
377
- ansible/modules/command.py,sha256=v7KAW_uI4zhBwaKBDZaHNSk3coZlyXoG9xGtDOM4MaY,14037
378
- ansible/modules/copy.py,sha256=uLltSKg-0poPjtV9WKhq0w4Z_6wOKm8mNR8How-DHXw,26725
379
- ansible/modules/cron.py,sha256=trFmqi8l8jADTDyNZn1COe_-GpCi9aNQj8wUCn5O7SA,26709
398
+ ansible/modules/command.py,sha256=fLSlB_ZhDLN3ZEi6RwjxV6LI6ouj9ODbXMKGxRIHDy0,14025
399
+ ansible/modules/copy.py,sha256=qdKvL9aE495X_NyWqBVESb-9jB8oAatQhdktPeDNcU8,26721
400
+ ansible/modules/cron.py,sha256=U_ROnoK-GKjzaKg7pkKPYfOnEYfy0Aq4VxAdHpJ-9e4,26709
380
401
  ansible/modules/deb822_repository.py,sha256=kHBZlGGQ_fA3dMxx_NzjC-L2ZuhkEwTTfLS6ZC6qph4,15760
381
402
  ansible/modules/debconf.py,sha256=YAS1yba0yaxPrfFCLFLQwtHxlpriNxiJiwpDnmm3JP0,9362
382
403
  ansible/modules/debug.py,sha256=E2UADFGHgS78KxCiOdXoojX5G4pAAMz32VGHgaPObNs,2908
383
404
  ansible/modules/dnf.py,sha256=BStesAQE40-hZRMwV8IZW5j3yIv1wd1XGXsXjW1jKfw,52289
384
- ansible/modules/dnf5.py,sha256=cMAgXt84CwnI4ujiF0gIAcQ3DXtprhLaetOyMr_z3MQ,31943
405
+ ansible/modules/dnf5.py,sha256=W-XUpu0NsKcJifvWfYHj6ba4fORI4YeYVU5ZiTazkQE,31659
385
406
  ansible/modules/dpkg_selections.py,sha256=RWtzxNNOfQ5SdwMwnt_1q-IJhLVb-nxNAriJwRHNVuI,2805
386
407
  ansible/modules/expect.py,sha256=yBisXCvL8OY5c_9AibH8xY3elmKebCwoHZAJj-MFPU0,9279
387
408
  ansible/modules/fail.py,sha256=kppam_caBllcF5IcKEYd-Xc--okSAOWNG9dVbpn2CwM,1659
388
409
  ansible/modules/fetch.py,sha256=lEf84dEW1qfNJGcYhRBWyDcJPwzN0SvoM5aMj3KepzI,4191
389
- ansible/modules/file.py,sha256=dIC5HGFGz9vDhnHbNZovf5vcelXsB9qsJNzho40RnDI,40125
390
- ansible/modules/find.py,sha256=Ia2QUTCHzc58MiLUOFTkYa_NHgM3rGsuNDtrWVwzvrE,24051
410
+ ansible/modules/file.py,sha256=gqWj6X6I0KzfHC_Cq3vrKovpFUnawZzFTYI4mw160Hk,39902
411
+ ansible/modules/find.py,sha256=75HyRPw69pR3Lhxc--xn3r2Xyqhnnuky1g2rD2h06yM,24038
391
412
  ansible/modules/gather_facts.py,sha256=3t2_XMgKuB-U35tnO-JbGEsQ_E31SnZxRQ-B_DVkIu4,3107
392
- ansible/modules/get_url.py,sha256=1JW5sLkkWbmXmh4rxNX05XHwn0QkcM10dnqqQ_PXMp8,27372
413
+ ansible/modules/get_url.py,sha256=RclzYW6qom9Noy55aVZP9atOTD9F7fRlzDP398IC6H8,28365
393
414
  ansible/modules/getent.py,sha256=tq3z0Szq_m2gp4DOgACRvNJzh-tkXGzd2Ew8XxrGRWM,5592
394
- ansible/modules/git.py,sha256=BtZWA4furfNfPefusAD-ihBROKHdRcBucpvpLJttxJU,57126
415
+ ansible/modules/git.py,sha256=NnWYMhBPeQtwHaLJ9SDpA9CgPxsc9TIY7rK8hDRL1FQ,57131
395
416
  ansible/modules/group.py,sha256=UKbXzwsgAFWWMlgFW8R3CyzthJXXu5JHnHnj7IlqOac,23747
396
417
  ansible/modules/group_by.py,sha256=_RDYbNJS27eosefvwnBCM86GyobaY-h3ZiWkd04qU68,2416
397
- ansible/modules/hostname.py,sha256=oklIQ8jwpnRZ2IAxY5igFg1hQFSHisNjXp-6sCQzmko,28181
418
+ ansible/modules/hostname.py,sha256=txDX_C4pmKL5S3EeTZH8V5w25SrqMu8D5IQan7nNsTs,28163
398
419
  ansible/modules/import_playbook.py,sha256=QP6ccgKA5Re8jmoLHK35hKVeuJnzTRDgZbEoo_uyFFk,2056
399
420
  ansible/modules/import_role.py,sha256=LkGQWDRvU2EUJIamn9OcdpcpfVPpswhLildcHe9urS4,3730
400
421
  ansible/modules/import_tasks.py,sha256=ZhlJafQ3ETM9Pi3Qt2gfedBI-q73HaeJigBKhR8c-eI,2137
@@ -402,60 +423,60 @@ ansible/modules/include_role.py,sha256=9FWEwk09DT0ucD6OOMPOS1i6jkllJOn7gkzJkRg8v
402
423
  ansible/modules/include_tasks.py,sha256=SrEIkzv7o01GXmRsXmWHhaNJcHiqN9qXZeDsNAhHuo4,2659
403
424
  ansible/modules/include_vars.py,sha256=7aI3mXpyRLOqFMZxghLT9zjfSmXDfEU6L_Td-pzmX50,6722
404
425
  ansible/modules/iptables.py,sha256=94iDMuVpx3Qq52cJaUW0dxZO3FE8cvs4op8t7nsvNm8,35494
405
- ansible/modules/known_hosts.py,sha256=hCrdKu_5vRRuVUa2yFpcdO9RjlRzUTkNwHEO4joPdO8,14439
426
+ ansible/modules/known_hosts.py,sha256=672GEOal1uEVn0P6uCs4U4wZmEYJasBLJFTNsROEJOM,14313
406
427
  ansible/modules/lineinfile.py,sha256=XElbV4fKfG70MDnlK3gC8hnbXslbNTscpdPaBGfKT1Q,23734
407
428
  ansible/modules/meta.py,sha256=I8f-iXVEar2pof6YfMcTiSJf5eD4Jfv0fAA4R1oTzxw,7121
408
429
  ansible/modules/mount_facts.py,sha256=vy9Eeu17_EMsJbxgc23pa7DDXwU8rg11WFJTqcLjMXo,26018
409
- ansible/modules/package.py,sha256=ce2O1o3tzPRTyYYvYNw16OLed8ke8f5AAXMGF1vi8XU,3748
430
+ ansible/modules/package.py,sha256=xwiE0SDoz1Drrh_UjsRi7naAY9Xp4hpO_TbmLio2EFg,3877
410
431
  ansible/modules/package_facts.py,sha256=Tvq3ULR8oyIx-lCJzY-wwWlL2gGiwLq9jS5H8Hjmick,17284
411
432
  ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
412
433
  ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
413
434
  ansible/modules/pip.py,sha256=GEtBIzOqZCtQbKwfWfZ-xHzDxtiXdCBe7kH7l-5ghBY,32726
414
435
  ansible/modules/raw.py,sha256=hPToqCii1ZolXVSaPmu-tCouEO1PoDIYjBtevoUvqIE,3741
415
436
  ansible/modules/reboot.py,sha256=P5mbaDi_k-ISjR5M0adW6yeyssahw4QvXYqSN7elypk,4808
416
- ansible/modules/replace.py,sha256=jAnGfWD38_zo8gC-rM3LkPwch54w9j044Bpr8mjpP2Q,11683
437
+ ansible/modules/replace.py,sha256=4rxh8yctaz5EH0_EetzQ526QEAiyMVgZTMuBvGckFSs,11659
417
438
  ansible/modules/rpm_key.py,sha256=8_DnYHOL1lAOlb_V5Y8T-qHwptjJxfaZw1I35tyGT7Q,9312
418
439
  ansible/modules/script.py,sha256=WmdINj1MxpccX9MspvWg6aP5MZGlfm0KSPpqNY7h0fk,4410
419
- ansible/modules/service.py,sha256=JERseiwe48tM3sInErGVu6Hz-8bhtSrVV98LO_mGt9Q,62314
440
+ ansible/modules/service.py,sha256=4cBxGoDrJ1I737LwxL4_ctYN-sIZU1lH3OUs0sxXssI,62026
420
441
  ansible/modules/service_facts.py,sha256=J-t3vjwTq7a4NuOhLlF0VG9J5rx0PaWVFpslKJVzCTk,21243
421
442
  ansible/modules/set_fact.py,sha256=3MysP4bx0XnYevu5L7iAJPLuq7ykp6lixeauU4LKEQc,5676
422
443
  ansible/modules/set_stats.py,sha256=3X3noQW_QQaG3Hb9rsxSDw6HP34MjqYJaqUF7RUL4-E,2641
423
444
  ansible/modules/setup.py,sha256=lHSuga52gN9mgnD-Rbs6ufqzkt7GvpzsQlb5PtfI2bY,11034
424
445
  ansible/modules/shell.py,sha256=Wr_K2zrHqnT3Aw4I42FP_-7dBxNAU04OnKzEtxVyQT4,6830
425
- ansible/modules/slurp.py,sha256=pMa3Yx0J29RyYBpclHv1j8lNlfrNPvk3NE6WroGah0M,3208
426
- ansible/modules/stat.py,sha256=cD2l6TQjwrJhIY-SCgS9W_i6WC6FreSDSudFHmH63R8,18658
446
+ ansible/modules/slurp.py,sha256=XwO6kxFmejod2V-OGqk2lmhnK7OCkkFhLEmMcfGChJ0,3064
447
+ ansible/modules/stat.py,sha256=tVvHtnpygx3looSmuUOWa7tAF3e930TSd4Ue89Lcblo,18646
427
448
  ansible/modules/subversion.py,sha256=XEhsibJHb5rg_yioveP_c-THxbh0ZMm0d8qApk02MZg,13485
428
449
  ansible/modules/systemd.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
429
450
  ansible/modules/systemd_service.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
430
451
  ansible/modules/sysvinit.py,sha256=Nrs5gLyHKZsqtm_ymFO0e0wB2KSDXYfbDt-uNlgUiF0,13962
431
452
  ansible/modules/tempfile.py,sha256=3ZljXNOu06T5ObTAz5Ktm_WKFrJACHwLf-01F7isf5A,3570
432
453
  ansible/modules/template.py,sha256=y1zu-ZZ0P-Cpxjddzk5V5GVpQNNfQL8E5sVeAb2plR0,4537
433
- ansible/modules/unarchive.py,sha256=ESs24Ceb9CC1rwF06qtOfg4xZdDLmiDbmNyUjVMLefE,45943
454
+ ansible/modules/unarchive.py,sha256=8ZyzMUsnQ_ejYt2pNCEkPvvErbm2hVWtDVlxX5jdM1M,45922
434
455
  ansible/modules/uri.py,sha256=iiKM43T5KlNL5lVA77_jwt0jmMf2aqMvwkH_LvE0ZWU,27953
435
- ansible/modules/user.py,sha256=HRhHL1fyxyRhtX16Yk3_sqmKKVWoQTzSBotI29ZR2eU,124027
456
+ ansible/modules/user.py,sha256=y6bBMok-BjcPTsi1GcdUvQFUCXxeZ6wKeOvcxKoBqsc,124027
436
457
  ansible/modules/validate_argument_spec.py,sha256=OMIAGE2L2FZLEhyV-VEpVN8wPAuJeovQhpPVwXmdL5Q,3209
437
- ansible/modules/wait_for.py,sha256=GP1DbV4kJMxMH2GNH8RuhQN1SV-H5RJb6KNUBvuqQL0,27671
458
+ ansible/modules/wait_for.py,sha256=Ov40GALvi1N1xELvYkzMM9PI4M3hf7KyLf3_lXy4BGQ,27700
438
459
  ansible/modules/wait_for_connection.py,sha256=pzmYONmV3vubd8SxrDVMsoradq6n5g-ZJpkuEgptUlk,3367
439
- ansible/modules/yum_repository.py,sha256=VdqnEsQE4QAqDCt6bmlLFdSPOVNHHyFHOoyH4DP9RjY,24461
460
+ ansible/modules/yum_repository.py,sha256=-N0ls91tk4NJIKttjMf_ZblekPdsxQCU3YLa46lwSQI,24493
440
461
  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
462
+ ansible/parsing/ajson.py,sha256=nv82WTeWYuKdy4LE_YM6nhLR7eb-Tyr4F6arjTP8nmY,692
463
+ ansible/parsing/dataloader.py,sha256=_Az-XBPPcxS2b40v2KWIBO_X9N0HNJXdDOPS6DkS0eo,22721
464
+ ansible/parsing/mod_args.py,sha256=ACsZ_Mv3jfquh79q6yP5xplCzSAhlaXswhyUBzXua4U,14194
465
+ ansible/parsing/plugin_docs.py,sha256=UYWDpLCF4FrBU0lxgR6C2bkoa7N8TBplh4KcW-B6enk,6326
445
466
  ansible/parsing/quoting.py,sha256=myYxG625XK6rgNULbBuKp23G2R83c0UilrF1ZImDjGs,1057
446
467
  ansible/parsing/splitter.py,sha256=hgrgDTa8v6WVvya8I-2DJr9HfcgZeg6hMb9p4nSnE98,11604
447
468
  ansible/parsing/utils/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
448
469
  ansible/parsing/utils/addresses.py,sha256=gxdde1fWiOiG6r8wrwBuQS9EdbHxTQJA1peIl0mz47Y,8084
449
470
  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
471
+ ansible/parsing/utils/yaml.py,sha256=F3PQLD7ptyIB3DkutFPotjbuwhQ02YDtK0guLLs5zpo,2325
472
+ ansible/parsing/vault/__init__.py,sha256=xMi1h9rhj-8qK18BzR_NiODjr3rJlcxLVU9oTI5x3FU,60121
452
473
  ansible/parsing/yaml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
453
474
  ansible/parsing/yaml/dumper.py,sha256=_GyNiVEk-ivwYtl9qkPe11_6FJA-tZGlt6jOqwdQQpk,298
454
475
  ansible/parsing/yaml/loader.py,sha256=REAzmajcwu2Vld9IEl62dPRTMHBY_iJGVYE3IKNhx4o,298
455
476
  ansible/parsing/yaml/objects.py,sha256=muP81NhLvhJAh9MZ5UTUp8AMUTkTKM4Pk-xl6gOeV1s,2150
456
477
  ansible/playbook/__init__.py,sha256=5FKnJsBz35UvBbwyiLrniAwkdse8jTRzjOrI0RLU05E,4766
457
478
  ansible/playbook/attribute.py,sha256=kAWselKvFurdGC0EaKJLh8b9y7IWChZwXG648aH6S-4,7800
458
- ansible/playbook/base.py,sha256=m2U6YZDArjBqnyNZsM_On3jgy0RN_Pko-TTxuehabk4,35383
479
+ ansible/playbook/base.py,sha256=LFB9IsowRKIMUGgNQFF4FL3firuxOQNJNvbF6UYZ4GY,35658
459
480
  ansible/playbook/block.py,sha256=m-MGJu0x_8f-zmFBWyOBNpJsyqDXFgW3-ROvsx0u1eg,16628
460
481
  ansible/playbook/collectionsearch.py,sha256=XQp1SiXhLpx_L9mIMFKbbHND_wDwdZcJmFg-rk_Fbtk,1884
461
482
  ansible/playbook/conditional.py,sha256=oq0Adm8LwibKuBC0LTk1TsQcqS1ZwPjSQuM2FUeip8g,1317
@@ -463,81 +484,81 @@ ansible/playbook/delegatable.py,sha256=BBcw2GU85V7ome7qX0KRg-vZyjv2J890kEHjYQOyo
463
484
  ansible/playbook/handler.py,sha256=pXI3V0_C-ierWt09-uGZKkjpAe12wpKTTo0vV9drOco,2925
464
485
  ansible/playbook/handler_task_include.py,sha256=kCrBThzmIRWKaecLl9UNB8VBvtVPI0dt8eHpBldsnlY,1391
465
486
  ansible/playbook/helpers.py,sha256=lQYM_4pFcPT5eay6dUq0_2UutYc572tzHF7s9pwObUg,14881
466
- ansible/playbook/included_file.py,sha256=DsjobfIfRHHVarF3_A9RexvhaRALioiEAMvN5gImxZA,11746
487
+ ansible/playbook/included_file.py,sha256=qRHaV-boz0skZ_fHBtsLIFlzV53EHKv1VZa6hCJsCMs,12027
467
488
  ansible/playbook/loop_control.py,sha256=5rZz6aWXpvvwOD4CzrS_b_cnXIu4Gf56czkomX1NS7w,2022
468
489
  ansible/playbook/notifiable.py,sha256=MQz4VZuOga35VLcdUxVd9FQVzFg-djtQZhs09DS2juA,299
469
490
  ansible/playbook/play.py,sha256=RHxQgshU6c7t8qFCBdZOutdXjRjrWeqWItPJJSw2GJE,17357
470
- ansible/playbook/play_context.py,sha256=fxK1UTt4kXEO9I_-gDX6W0xscCcDWa8QM-m0olD5mQM,13639
471
- ansible/playbook/playbook_include.py,sha256=ns4aXKJjGhYaFDa9MuY3P8Qw8re87OKoT_8r5D5jEVE,7641
491
+ ansible/playbook/play_context.py,sha256=7tl_ObKgN8guKk6G9R1oSWoFmePDwhEiDHw2eEn78Hk,13673
492
+ ansible/playbook/playbook_include.py,sha256=XNNlb-THo8rYQ-zFJpsomt29VsF-eRM9wbgwTCHqfw4,7634
472
493
  ansible/playbook/role_include.py,sha256=DV7num4uVJvkIY4IHgB0uHmE8-gRmaNYbuoqP0-7dTY,7610
473
- ansible/playbook/taggable.py,sha256=PsR97eDVSXkrwPWGXHYlZd70hc_WBy2RNV0NvtAnG9w,3710
474
- ansible/playbook/task.py,sha256=iuvBMyaguZ_PCImg6FdY3ZAJ9eodDkozkSEQtpc1zq8,24533
494
+ ansible/playbook/taggable.py,sha256=5ZjDUpuna6UQcfYOr9UYqcfOwDQUVfFN5pLXFved708,3704
495
+ ansible/playbook/task.py,sha256=LYMW_UEARc1ILIIUM9I_y5zbeyUGUfRddFWwlbW8pno,24567
475
496
  ansible/playbook/task_include.py,sha256=y7jSK7CqYEXmXShJOPUi3lCYuZI85197Gp4zLYsyUPw,5258
476
497
  ansible/playbook/role/__init__.py,sha256=cpm0nCmF_F0UO5tXpmkV49auW7DR5YRwdHOUEH1wXSs,29652
477
498
  ansible/playbook/role/definition.py,sha256=44IRVqojhemfrdC7bU7aIiYwcFm6kWr30Hn4x0B2Y8U,9477
478
499
  ansible/playbook/role/include.py,sha256=yGBXglTQDtCpZ2XO1mVxp2UtsdLpLTt30KVR2AbBe5U,2159
479
500
  ansible/playbook/role/metadata.py,sha256=h439HGUucs2gOMUJlp2M0OO0_wnWWlQmTs_sOe8h6Sc,5018
480
501
  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
502
+ ansible/plugins/__init__.py,sha256=kQAlW-cB8b6S7giuIFisYimM9MMWm3OCnlAEREt2kks,7413
503
+ ansible/plugins/list.py,sha256=NlJeWem88zKrPKVc_3xfHFEFk2VmOja7dYY3JG2pXfM,11015
504
+ ansible/plugins/loader.py,sha256=NoenbtZCxnG4gd9Lw7feYYgHKAZWthOEacu6piU97DE,81925
505
+ ansible/plugins/action/__init__.py,sha256=tFljc9kr2D6VfxcxlTA6sQsMd8k1WbqNHStL7zhTN7U,69312
506
+ ansible/plugins/action/add_host.py,sha256=Pil69LPaJpUulx-483MkZBRaiFaf14CkT0cCVw6aa_s,3575
507
+ ansible/plugins/action/assemble.py,sha256=h3_tsJBgWKsRrLXSM03468iRiDTDJlE-dAJhZ-sbHOY,6153
487
508
  ansible/plugins/action/assert.py,sha256=k1kLWyaXNE-XTVWBX1eIHaSZpGg8O8WeJfa62vqzcLM,4007
488
- ansible/plugins/action/async_status.py,sha256=Cv6dLt94Z6YIPZpPIDhS_yC7yqKtT13HyDdaIONMUCU,1726
509
+ ansible/plugins/action/async_status.py,sha256=_kcqeVJ6rrLKS_nGr4z1wApVCHC9pBU66YcuCTchasg,1964
489
510
  ansible/plugins/action/command.py,sha256=N09Vf2QypBMZ6NSptQGbf6EAN-kfqLCROGPkOSgV3SY,1069
490
- ansible/plugins/action/copy.py,sha256=m6LI1AeabkC05xkAr6mIKW-oixbufAV7nZxgK4QePrQ,27619
511
+ ansible/plugins/action/copy.py,sha256=dq8wGc83xYyRc9X887QnOJxdRAt0rB2-NJQxuxowClw,27570
491
512
  ansible/plugins/action/debug.py,sha256=KPWtGEPbc119_e1rNQztCB-wzelJObAv16qJNHPUNb4,3604
492
513
  ansible/plugins/action/dnf.py,sha256=2ObzxBLRPBPy2JCp3wWRzR1fIEHzhS5y34CoAzTXqN0,3664
493
514
  ansible/plugins/action/fail.py,sha256=MzIefYaHaRdpjgnqc9eNge0P32btlTPzO6TB22jkadk,1457
494
- ansible/plugins/action/fetch.py,sha256=S55lvqxBTmKSV3IrcgKZTZnXz6xCSiPWLeZbUk1VzFI,10166
495
- ansible/plugins/action/gather_facts.py,sha256=VQwq9bwRwtwOiSwzLSc7N7OI5S9BxwuTgmfq6m7ATfM,9487
515
+ ansible/plugins/action/fetch.py,sha256=kYNty2VSKqac-RKLcU_3SFMnnAA9aH5s_aeyQxS_rN0,10165
516
+ ansible/plugins/action/gather_facts.py,sha256=vr-3BJiBDP25aJd9e1uydpS3r8Np2T6nubUbYAls58w,9109
496
517
  ansible/plugins/action/group_by.py,sha256=zbkI2A-6jyK9Ux--QVWZMJOp2VNxjaAebwJpMG6YYnc,1894
497
518
  ansible/plugins/action/include_vars.py,sha256=c7lKJ7qlcdwm0HP8XRm-8VxK9JLE4feo-WDw0Tjc7RQ,11553
498
519
  ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
499
- ansible/plugins/action/package.py,sha256=oytdO1-nZEj1qowxTtSZT-E6GGpQAk4THH7brvr7TTY,4867
520
+ ansible/plugins/action/package.py,sha256=F49tAgsQpeVxHiraLQW_LyjAHyTCaZty1GS6Zv2UwYE,4807
500
521
  ansible/plugins/action/pause.py,sha256=dlBT3oSreP_Wp850MarMuNuROF_UiBfJ6ccexkV94zU,5674
501
522
  ansible/plugins/action/raw.py,sha256=4kmANddcBwXFRhu8zIwBu392QE-p7WReO4DWD1YDnGU,1762
502
523
  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
524
+ ansible/plugins/action/script.py,sha256=KNnxVi_QTEEcoS7zOe2GnbY6ps8_OJWMskJF7PkZvsE,8601
525
+ ansible/plugins/action/service.py,sha256=H3byRUoOITfEvIDnjuX7LunDVc6KiliXn3mT3R0BxiE,4298
505
526
  ansible/plugins/action/set_fact.py,sha256=G1Q0HcTaXFIykNvjSG65tFkif0dMuvMvt3T44OlrB6Y,2186
506
527
  ansible/plugins/action/set_stats.py,sha256=wRmlGzp5TAaLrPlz2O6kL6F_uSGYBaxtnF4jWmB3qeY,2476
507
528
  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
529
+ ansible/plugins/action/template.py,sha256=0shnUtMrfw1lJ8Vzd2ODFC-0MyuS3mGk_2Yx5n7KJpk,8584
530
+ ansible/plugins/action/unarchive.py,sha256=9ocpE3QnpvnZTQcE_Rf1et3iG1sqCmW9yzy1BvlbDDY,4422
531
+ ansible/plugins/action/uri.py,sha256=5d4kATgn2boX7Y4dey55B_Wg3zpU-8drVhDQ2Zd5xf4,3358
511
532
  ansible/plugins/action/validate_argument_spec.py,sha256=U-g8PugBg3QTTqkKQwtOS3NNou12yT4NQtXqJ10qBw8,3937
512
533
  ansible/plugins/action/wait_for_connection.py,sha256=ALvq83mqFmZ1S8pmdOwdVqQxKax90De5U3dZBKjC_dU,4564
513
534
  ansible/plugins/become/__init__.py,sha256=oifRA8cKuxrBxqiwVdT0UX8nOEZuX-VV6-I1LqvbI1Y,5210
514
535
  ansible/plugins/become/runas.py,sha256=nBAuuQDpqWHs5yGFPa6JvPmhOZ9J8tlMM32euJI4_lk,5325
515
536
  ansible/plugins/become/su.py,sha256=tkS-mp48ZY93lXFDjcBx6XbPrirTbcFOySnxNS5Fvhg,5424
516
537
  ansible/plugins/become/sudo.py,sha256=gGgWn1uQDQYV6qZykTjC_xBIArrwpsZXn7cTlpbj1cE,4809
517
- ansible/plugins/cache/__init__.py,sha256=mkRyVlibIizqO8ao7g5jB0APQKhbngcVobOVmD4FjT8,12082
538
+ ansible/plugins/cache/__init__.py,sha256=qpyZkLhKI75pgq2_Dhh6yuoxpfmMjcVjhYJzxoAURrE,11930
518
539
  ansible/plugins/cache/base.py,sha256=bBRxjoyZ4Y18O4MGH_U5uI8NQiPDRZzxWKjMqyvta4Y,1143
519
540
  ansible/plugins/cache/jsonfile.py,sha256=BVmwy7KgUkEDRgq1f82NQTQUEpxn0MIfbtExHSP5s_I,1659
520
541
  ansible/plugins/cache/memory.py,sha256=AzxNRhijtssd2xZoEQYO4kiYh8OQZeE0vFgngla-QPE,1166
521
- ansible/plugins/callback/__init__.py,sha256=JhhuYyyE6fdM0AIw-caBx2zhHbpkdq0lepOFryDOXWw,29195
542
+ ansible/plugins/callback/__init__.py,sha256=UEb83C36GFe0SgFdJn55IQ5tl-NTay6MU_2QOFz7sek,29041
522
543
  ansible/plugins/callback/default.py,sha256=31TI9bGMftSG4Frp7ixqM9nX5nI0r3TjNgkUon9n3vw,17632
523
- ansible/plugins/callback/junit.py,sha256=fZw5BLeojLJqbYiAX7cuCg4iLGkRmQMnod1tu_xKZgI,14541
544
+ ansible/plugins/callback/junit.py,sha256=HijVroOgMK5nBGEr8lc3LwGNtIcOAe3FYdEI_BxFgJk,14710
524
545
  ansible/plugins/callback/minimal.py,sha256=4POsci-dcNcqS34_N6OHfnQEdWRYNou0gpp7n2Icjsw,3237
525
546
  ansible/plugins/callback/oneline.py,sha256=GoAhI9TVsrf-4cXXeu6VK2a9Pd0c_Ko2MPp0FlzeepI,4173
526
- ansible/plugins/callback/tree.py,sha256=gjKWlkx5i9G0SF7VjKKs8C8j3NG9WVOtXsAsGjKtWQs,3649
547
+ ansible/plugins/callback/tree.py,sha256=7_Zu85ZphlvbF1FywJg5E0-2qTMMy3LQmTafTyEB8i8,3619
527
548
  ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42AKMy1E,22719
528
549
  ansible/plugins/connection/__init__.py,sha256=5Dk6zdWL_uDwLk1Iy0WVyhqS55qytHMCr3Rt9pUfwfg,19506
529
- ansible/plugins/connection/local.py,sha256=ikW0CVPN7bxAbAIVtyYOOaOpqq9mlmo9yVVuZOQXiVM,12176
530
- ansible/plugins/connection/paramiko_ssh.py,sha256=q81eDkrwpNox87NLL1jEptUl_PTE7-KDANIhF66dSEQ,27651
550
+ ansible/plugins/connection/local.py,sha256=ooM9js5jPgJ70UpXIDNxtRkKKf6n9U_VrRBcrsdDdk8,12125
551
+ ansible/plugins/connection/paramiko_ssh.py,sha256=F6sjILG7nnC4cka-7kQotBcT_1yzU4WeaOTMKa3-OUQ,27681
531
552
  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
553
+ ansible/plugins/connection/ssh.py,sha256=N1-mri_QUIQf8BnhLq0KeOsMcpAXNGDLAOIeKCV6iTE,71500
554
+ ansible/plugins/connection/winrm.py,sha256=-E6MpnAnXhWe6XmUA5t_5rgYaWGsUhl9BVzbsj5YlTg,38488
534
555
  ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
556
  ansible/plugins/doc_fragments/action_common_attributes.py,sha256=Xj26JljzTDZD9aZw6nBSvdW-i5z8M7Fk6rzQqNsYKm8,2442
536
557
  ansible/plugins/doc_fragments/action_core.py,sha256=y8SZ8aTI4Imrm7TZPyEje4Mp5_Qc-itky7y9YfSo_vE,2855
537
558
  ansible/plugins/doc_fragments/backup.py,sha256=xRDCmzQXdP5JuLND3vVcpi-r_ZUxffd65RyfDQvDu6o,507
538
559
  ansible/plugins/doc_fragments/checksum_common.py,sha256=7FvlK39jHxRfWZmLwypBz1Y1ccsEV9CyHDN3uAe6P9Q,995
539
560
  ansible/plugins/doc_fragments/connection_pipelining.py,sha256=qakFITWoDcWWS90fLZ7HbEglbyBrqgg89Cf5Un4k2aI,1182
540
- ansible/plugins/doc_fragments/constructed.py,sha256=gHLqBuAsORIjloaxVMb_uBg8RYXLnvDp-J_DjEcUXtU,3298
561
+ ansible/plugins/doc_fragments/constructed.py,sha256=MystVfEBISSpKrIGBQlXLhqnNX25Mn5i3Ze2ChYrYqU,3320
541
562
  ansible/plugins/doc_fragments/decrypt.py,sha256=gTRUiNTINhI80f97LVxNzjTs1GEgTfcQRCt4nN_CXDw,487
542
563
  ansible/plugins/doc_fragments/default_callback.py,sha256=w8qnzrpFjWEyQB8GhdEICV3Yhnd4FY-rN0Fvu55ksP4,3212
543
564
  ansible/plugins/doc_fragments/files.py,sha256=MkzsSvm2KnJr-Yhrv-k8xOi2rVyH9N7tAM4MV9zozn0,4760
@@ -561,11 +582,11 @@ ansible/plugins/filter/combinations.yml,sha256=LttrIICjapNtZHWnvJD-C9Pv3PIKP16i8
561
582
  ansible/plugins/filter/combine.yml,sha256=QH2zy4qr9wPpEyr-XKmphbls60M4ZSdAkj7r3cuvC3Q,1671
562
583
  ansible/plugins/filter/comment.yml,sha256=nJVzBF2Qiwa-qQRioJK42cbWt3Rb5LYmfvGPhrhU8Rc,2139
563
584
  ansible/plugins/filter/commonpath.yml,sha256=SPx3fPy4GPJaKmY2S8aJI1I800FOgErYAKVXV1etp1Q,696
564
- ansible/plugins/filter/core.py,sha256=4vy5t5pfaUjClXgZDaU-Ue4vspNaDsR9tXYyWcJ6Cgw,27418
585
+ ansible/plugins/filter/core.py,sha256=S0kKl61FiCIsySHYAIZ_B60fVVrkYZ5Ljyi1iwzS8ww,27372
565
586
  ansible/plugins/filter/dict2items.yml,sha256=A3gL25dyGrSqP44PtqQgg6paUnwReAzC7Brkqel-39E,1523
566
587
  ansible/plugins/filter/difference.yml,sha256=YJnJJMYejCcBaNgxFBhYj-z6OysRHmss1gUgrIJBQFk,1091
567
588
  ansible/plugins/filter/dirname.yml,sha256=Z7p7ay8s3_Zee6gIu7qr4wUC-an7lwLwuoVmgHQCKyg,820
568
- ansible/plugins/filter/encryption.py,sha256=oIzvXfta1sjd4XMEnheoyr7jW1bORoCPKn91e5Taoqg,3079
589
+ ansible/plugins/filter/encryption.py,sha256=gIYiyoPGsMdczxOKqDdfzSfWWG5urnGggEY_Qfmijrc,3201
569
590
  ansible/plugins/filter/expanduser.yml,sha256=P_AD4oBYbADe2f7pzHjbnkM95t8P1OzN0S3AHLT6C9o,506
570
591
  ansible/plugins/filter/expandvars.yml,sha256=KqtMP_oHLXsKFxHn_3iKX5PPGV5l-yhWX1jPD-sJOeE,569
571
592
  ansible/plugins/filter/extract.yml,sha256=vZ4MJ2bosxriZTCVyMCqBs85XczqRP6rlePT0-bxfU0,1367
@@ -627,24 +648,24 @@ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQ
627
648
  ansible/plugins/filter/zip.yml,sha256=LEtp9xRWuPjWDHyHdm1rVYbe1k9hdxGToLrNriRgHc4,1352
628
649
  ansible/plugins/filter/zip_longest.yml,sha256=VHaZlibbKoh9F9cxo9Z7EakellHAvJAsliVRS4Mq_co,1256
629
650
  ansible/plugins/httpapi/__init__.py,sha256=k5YFXPK7gug-6LkI5gihNZR5cMY6N1uRKT4wOYRWdOE,3093
630
- ansible/plugins/inventory/__init__.py,sha256=F8vuUwdDy3PbBgiwsAEC1bnCMzLpWRpxgDkXuZ7sK6M,21873
651
+ ansible/plugins/inventory/__init__.py,sha256=NC9pqzVDJsruh7OipM0n5mFmZL8VG13lGu3L9gVsTg0,21790
631
652
  ansible/plugins/inventory/advanced_host_list.py,sha256=9PlZtS78C7uI7Y-ypfwP2u9scck6hA64TVVAX6Ovs-I,2273
632
653
  ansible/plugins/inventory/auto.py,sha256=bGznhN4RfFLznnth2C4QxCfbVdxzyQsmoT6sp8tneIY,2876
633
654
  ansible/plugins/inventory/constructed.py,sha256=N1oj4IDE6rXqTd3r0yGtuwLNYtuzbBRbhFkG-Jawhig,7353
634
655
  ansible/plugins/inventory/generator.py,sha256=90Zhmt3MK5_Nfz4lL3jjozO0p8eiIlz2WqoyH7ITygI,5824
635
656
  ansible/plugins/inventory/host_list.py,sha256=DZayr155_Izfb5YGvzL7OMyWc-QQwyg04h5eDaFq8P8,2348
636
657
  ansible/plugins/inventory/ini.py,sha256=7kkySGQYkXDISkh2JrK0izI8HfeMnSzD8nY28ZunQok,19358
637
- ansible/plugins/inventory/script.py,sha256=EWXMWr5mhGkLuWZIBojT5o-jg20LJAApgX63RebJ-tw,15185
658
+ ansible/plugins/inventory/script.py,sha256=ryrrUY8xZ5QR9302jEPg2KM8bCSO_btnTcxYs3rlpOU,15184
638
659
  ansible/plugins/inventory/toml.py,sha256=xZnpzVtxtCEZ1aBB0SpAjy2iO0qpL01-QVnCihiCBfQ,5577
639
660
  ansible/plugins/inventory/yaml.py,sha256=Z6ANo6E20DM6Axs1cd6z7jUv5Tur-dHEtRsx0LmGm58,7530
640
661
  ansible/plugins/lookup/__init__.py,sha256=95ildPoHi21L34ULD1h6mNknuQ3yrjZCBaE5rPdODi8,5523
641
662
  ansible/plugins/lookup/config.py,sha256=9IHIWhAcflC-Gm-1RVPcIVMmaULYhUbwoKLTBBzqxkA,6186
642
- ansible/plugins/lookup/csvfile.py,sha256=GkgCEtXezMtBQ2JvP8hpvB_MeOglD5FLmIo5AAloUjE,7939
663
+ ansible/plugins/lookup/csvfile.py,sha256=HvzQSN2F6Lt_oyp12PzrcLAQTKc1NPWNszEw8WniImo,6487
643
664
  ansible/plugins/lookup/dict.py,sha256=9LTeK9YZOG4U9l-2gy5Jp1sDqsXRlf4F3WbULV17pjE,2139
644
665
  ansible/plugins/lookup/env.py,sha256=IEMZs0p_rLR4jcfJ-sNqJT8vijnH4-MNyNXM_ttuqJ4,2620
645
666
  ansible/plugins/lookup/file.py,sha256=mHzVVKhShRVeXGBoL4gt_Q-DLBtTf3lCbVSMNrEFy-Q,2924
646
667
  ansible/plugins/lookup/fileglob.py,sha256=FDvmiKVu-wSwzrT4k14qVHOFaORAUFUhkWPvX291J9s,3056
647
- ansible/plugins/lookup/first_found.py,sha256=zguQxgLZYDwFDbsQuWgyd7Xa5Kf_P5wdGTlkHS9Rhec,11190
668
+ ansible/plugins/lookup/first_found.py,sha256=--ILjXtZMffzg5wwK2u8NDX6Aj5GNS2TCJh55NCADd4,11228
648
669
  ansible/plugins/lookup/indexed_items.py,sha256=80giTqR90ncG0a29emYTACmCir4dMY7QBEyQd06HFVw,1306
649
670
  ansible/plugins/lookup/ini.py,sha256=cKJG87FrDzl2n799TMqIQimSkQbme2DSIE5neY0P3Ds,8171
650
671
  ansible/plugins/lookup/inventory_hostnames.py,sha256=JhQkageEIMemrYtxcznt-eUeqxySPJ8xwT37wXdcn0c,1716
@@ -657,18 +678,18 @@ ansible/plugins/lookup/pipe.py,sha256=6URDPkYLi5nmaz1C5KqL40o_CxwQnnTr9zJ97Z39FB
657
678
  ansible/plugins/lookup/random_choice.py,sha256=d7oKWfExsvHKA2tOs-8UWnWNlFxu3y3kDkhKaaaTOxo,1543
658
679
  ansible/plugins/lookup/sequence.py,sha256=LQubZqrZgL20ZCk8rr6WqLeZr86OaHCyyz0MHow3EhM,8569
659
680
  ansible/plugins/lookup/subelements.py,sha256=RPgYHauS5v81uc_PRAgkSOfjkxrWDS1H_KwElWi2Kl8,6134
660
- ansible/plugins/lookup/template.py,sha256=ajdP6NYknpUvWl1P8-QVwrb9_ZNLv-NwtsBHsCvNyv0,7172
681
+ ansible/plugins/lookup/template.py,sha256=1pOv9Zatk6btuRhMiaFOBrXxnS_JO6tk4oFNj9Qm6TI,7406
661
682
  ansible/plugins/lookup/together.py,sha256=WAtJ2jagHIDL0GaOhnACA1Uh4jVtAGTZqgk61hz_ego,1768
662
683
  ansible/plugins/lookup/unvault.py,sha256=EMS-dOg5b923Rku0lXV-2Gy_Gh7-MLNwT1Lj9hNy8DU,1837
663
684
  ansible/plugins/lookup/url.py,sha256=EzMzJpR3JURFDuZCjpvwK4W8cTkZj_5g5p77t3mKOyM,9173
664
685
  ansible/plugins/lookup/varnames.py,sha256=4WKSH-u0ZnQD47r20c5OenaG6Vlamp6nweIZSFOJ0b8,2595
665
686
  ansible/plugins/lookup/vars.py,sha256=gxADVj2vdF_AA612NihSY3HbacczOdr91UqkeaS7xu4,3266
666
687
  ansible/plugins/netconf/__init__.py,sha256=50w1g2rhUo6L-xtiMT20jbR8WyOnhwNSRd2IRNSjNX4,17094
667
- ansible/plugins/shell/__init__.py,sha256=arXgnTmb-1GKNDhxXBqGqp043kLPoOiia1dqK7jSPRw,8985
688
+ ansible/plugins/shell/__init__.py,sha256=yxBEqC2gM7lD6d1BNrzcOWgGbZJnIsvNARcbO83NhE4,10801
668
689
  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
671
- ansible/plugins/strategy/__init__.py,sha256=S1rowHRLtNkqQzPnDvpWx7BYdzUGkyIvCgTXorCMbE0,56392
690
+ ansible/plugins/shell/powershell.py,sha256=XIkaH1cRCLWtV6JmhxljeAGVZIZv6KtG-EP_krickN8,17926
691
+ ansible/plugins/shell/sh.py,sha256=WhhXBH0ZTBeoUHEtSHS5N9jekxzRNZkSe-d1BYGle10,3687
692
+ ansible/plugins/strategy/__init__.py,sha256=nRyfddG4w_NmtaGjVGF4mhpYdQwx2CmKn8CTJ6YBSHg,56392
672
693
  ansible/plugins/strategy/debug.py,sha256=LJaaals9GQq82Idq4D39NnJrYZPcZiLcu14GsIb3SI8,1205
673
694
  ansible/plugins/strategy/free.py,sha256=gnH0U1BzBzvU0SuOYgFt7A315XQiIvvgHmxR9cLyxoA,15656
674
695
  ansible/plugins/strategy/host_pinned.py,sha256=sVB_qb26bByZKjr8AdvBrLHkt-6VyFGjFcVj1udcFvk,1875
@@ -681,7 +702,7 @@ ansible/plugins/test/any.yml,sha256=urB1M9FK_RXOeN8oJLdMfn884pnB6yv1wC1mdA84_vE,
681
702
  ansible/plugins/test/change.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
682
703
  ansible/plugins/test/changed.yml,sha256=Kywm1gznNJRCxfHmbCEp2F5KlSMj5DGC5WKfHbr5_9E,663
683
704
  ansible/plugins/test/contains.yml,sha256=Tb-rCKkGUo4fSpY3lrAlyjJrzN8H0A2Uv1LN_HMPMQg,1288
684
- ansible/plugins/test/core.py,sha256=XYVWnzQhlzXxcdLaXOx-DLWxhJRk8GI7po7iriaBLvw,11117
705
+ ansible/plugins/test/core.py,sha256=SXHNtYkUVL1i8iehYeFusFpJD_f_8BMzisL-yyFd3tQ,10963
685
706
  ansible/plugins/test/directory.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
686
707
  ansible/plugins/test/exists.yml,sha256=R8lteO8uYy-XelgK7nK3U_sTUDz0DrTO2BAUr8ltgrM,885
687
708
  ansible/plugins/test/failed.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7erA0,803
@@ -689,7 +710,7 @@ ansible/plugins/test/failure.yml,sha256=lTzQSd0r-SZn2y_ifWO4eszPWd72oea8fCl44p7e
689
710
  ansible/plugins/test/falsy.yml,sha256=SFzc-DA00IVrZ0qhf170YVq9eU14gw67cm7Gp062ns4,801
690
711
  ansible/plugins/test/file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
691
712
  ansible/plugins/test/files.py,sha256=YvdrNZ23EOKIttRBiwThij4sPgbFvgOvgc2Uw9RiMM4,1407
692
- ansible/plugins/test/finished.yml,sha256=eAfkCk54sSB-G6ReG_NaYH8dGGiixhZyZs7SoFP4CdQ,699
713
+ ansible/plugins/test/finished.yml,sha256=tJ5NDBpiuk-VVq0-Q1CHVi4vI0eZjzT9o43iU5HJvgo,702
693
714
  ansible/plugins/test/is_abs.yml,sha256=lZA0XP1oBNg___Du6SqNOkDeQC9xIcZpROYV5XJG9bg,764
694
715
  ansible/plugins/test/is_dir.yml,sha256=UpHBKTYTqusESrl9PA5lyhhIdoMXke6sf_1z5nzkKD4,660
695
716
  ansible/plugins/test/is_file.yml,sha256=_yCsLZH8jHhbEwOyI_X4DxYixut6i7oRHaeZWltH50c,651
@@ -720,7 +741,7 @@ ansible/plugins/test/superset.yml,sha256=KcPyWv-MqREe_hgKdilPJjOJ1O7hGgHLLZEfvEg
720
741
  ansible/plugins/test/timedout.yml,sha256=w-QWRd_nJqY9oE4ypd6Eyi4oc12ngIDZJBICBvWossU,594
721
742
  ansible/plugins/test/truthy.yml,sha256=Flgl3QawsSbBYK24d1ciSSmrUCJwnWRdt8YIOI9uyLw,810
722
743
  ansible/plugins/test/unreachable.yml,sha256=KCrtQULh4YZ3iOZiE0-_SGCCpqnjIDf3n5Go5w5d58k,695
723
- ansible/plugins/test/uri.py,sha256=9g4rBTrmAqWy4JtUv8ZhtOirRegXEbNuHmWC33feeNA,1042
744
+ ansible/plugins/test/uri.py,sha256=j1WZU7eCfNEu3m2udzVTP8nIbJ6TFsG3DmO62FIosM4,965
724
745
  ansible/plugins/test/uri.yml,sha256=jqb-Ppm-uQfOh-XgTm6iW8dxW1s2NvFpHBsPBsWEMzM,1115
725
746
  ansible/plugins/test/url.yml,sha256=XelZ7TQrt8b2xOMaJh1FHt93vTFZp_B3k8lqVap9MSU,934
726
747
  ansible/plugins/test/urn.yml,sha256=yA58wCfvnD4MlWIHAkR_VaxZ9-FRKhGUncl_KF_8Uh0,576
@@ -730,56 +751,55 @@ ansible/plugins/test/version.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3m
730
751
  ansible/plugins/test/version_compare.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3ma38,3283
731
752
  ansible/plugins/vars/__init__.py,sha256=D3YwVKABesBwag9e7GsLOxlRWqEO5NgfHDmYSq0z_1k,1331
732
753
  ansible/plugins/vars/host_group_vars.py,sha256=II1322kBCCMbBtLL31AydKJ6pmjDZNr5ab6fI7rWNXU,5921
733
- ansible/template/__init__.py,sha256=0Ft9uRn9ZRX19TO47Q2tXqayPtOiQMBFfpAMYkKCBNE,17850
754
+ ansible/template/__init__.py,sha256=G47LuFkT4poWK5taa1xSXiLTbPJgikWS_DDE8gV6aPY,17387
734
755
  ansible/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
735
756
  ansible/utils/_junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx2ERXwM,8671
736
- ansible/utils/_ssh_agent.py,sha256=2WlQqytGHoSkASLBscMfBOv69QAV0YNuBfKak4dh0nk,21277
737
757
  ansible/utils/cmd_functions.py,sha256=VmGs5ntdVaaqAJHcCTpGG3rYAAcTNl1b2-Iw4YVOt9Y,2180
738
758
  ansible/utils/color.py,sha256=LjJO_12OsJiavBxwSDVXtLxdTzdwd2YWUp1OJ6KcM2g,4057
739
759
  ansible/utils/context_objects.py,sha256=vYulSJkzR3zxsQF_6_AqbPCCMy8WGC5dSqLFXJZqGIo,3034
740
- ansible/utils/display.py,sha256=ym8irMsZFDCFD63XJTviZHwnvrO3eX-pJcN_Gh3G8u4,48869
760
+ ansible/utils/display.py,sha256=XxwNonTUfahQYuBkBbUkpF2F1wtZl8IDpocCU6C9tn8,49299
741
761
  ansible/utils/encrypt.py,sha256=j7DcEPr_yHSLYfYEruybjCl7kFk4rKjjTebyGx_-ZbA,7590
742
762
  ansible/utils/fqcn.py,sha256=_wPNWMkR0mqRdkr6fn9FRgEkaCQHw40yardWe97FfEc,1215
743
- ansible/utils/galaxy.py,sha256=Un3XgXhx8FoC6tkp1cZ33rmiAaRg634exKruwOVhtdQ,3855
744
- ansible/utils/hashing.py,sha256=bj9ZaP7B4o0la8RUiRL0FPfip2qZCxudcAa-PQ4F7zU,2837
763
+ ansible/utils/galaxy.py,sha256=xdfYGrHAz0KJB2N0zvAFAx5ZXNldDZnA8F4L3to7Q40,3859
764
+ ansible/utils/hashing.py,sha256=u9nqsz_5KgeD0u01L3RdqqB6elvD_OOYEPjQZh6-ek0,2699
745
765
  ansible/utils/helpers.py,sha256=b4O4RGswsQR_lbcfQsOXpw7AqaXt92nyUvb2PEDeFWQ,1759
746
766
  ansible/utils/jsonrpc.py,sha256=NyVItx9-ppCCsnn856VGoeSeRdu--e8ieZ6WzrD-4CI,3806
747
- ansible/utils/listify.py,sha256=kDtcewq4gWi-waCfqgHy-eITDbvXA08Gx_qvgbYI62I,1275
767
+ ansible/utils/listify.py,sha256=QCi-jvTaklqvHpK0CKuH_mhk5E91Lh-_UjmjGdqYunE,1545
748
768
  ansible/utils/lock.py,sha256=aP6MfrvWHdO_V756hwFsJG1I9QaQyFJq9W0tf7pCN3I,1306
749
769
  ansible/utils/multiprocessing.py,sha256=Xgs3kXqbzVujXah0-R_D6eUcQoiapbQ-0yclNpkAvs4,614
750
- ansible/utils/path.py,sha256=RMuCOlqUyDjIlKTAqNhD2N7iuKkL4jnvXNWh9aMtQRw,6051
770
+ ansible/utils/path.py,sha256=a4VvYA9gNJ9aatD5W3eusfWjFIr48ePLcmyZ0YkXmKo,5985
751
771
  ansible/utils/plugin_docs.py,sha256=A1Fy5qaZuOnrEm896AdHi3znJkVMFveu4C0MQujSBpE,15383
752
- ansible/utils/py3compat.py,sha256=l5x0He1q4RRPwSummCN8wHhD8PxlivcgfthllyI_XCg,578
772
+ ansible/utils/py3compat.py,sha256=l_cha1O6KPy8KvOfSa14bsSSJUqh3uvNJVdz_FFtgIw,637
753
773
  ansible/utils/sentinel.py,sha256=3TBjBlaOB6NfoXt5MFLCHVQLbPIFx03N_glcN3cYdjo,323
754
774
  ansible/utils/shlex.py,sha256=eUCZ0VkxMSEoyXCDspS9E4cI8pQWn83OFCt7sbVLB6g,841
755
775
  ansible/utils/singleton.py,sha256=6nYKQz0zmslyaOvbzCSG0Eud1eIgsQiSPZ1DyY7tXtc,1024
756
- ansible/utils/ssh_functions.py,sha256=cwLETKrXhcdaqYlwuvUdQRv9CZKdnLt5trk9VMVrJO4,2268
776
+ ansible/utils/ssh_functions.py,sha256=KZ9J3bpOCz-bvx1mqAbyWan_cg5L8C3OjPDl98y9Qm8,2293
757
777
  ansible/utils/unicode.py,sha256=__zbdElrMS9Rrqo9H7tF8zkjKFQCFU8kTtj5cVIITxM,1100
758
- ansible/utils/unsafe_proxy.py,sha256=f_oJ0jCOh28Aa4Ps5QuhlBuPJCigVwpNKdfffw3xGC0,2114
778
+ ansible/utils/unsafe_proxy.py,sha256=KvL4YeKk3cjxVDTcK9-ijBUneJDOMRngqLOTITFABPE,2107
759
779
  ansible/utils/vars.py,sha256=RhZssst9c2fRWvlT6YgDW3v45mmea3x1KLucyzKUsE8,11443
760
780
  ansible/utils/version.py,sha256=TKmSzm_MFZVJWpvmOnIEGZzRfeHLwWmeuHj16zGqb2c,7736
761
781
  ansible/utils/collection_loader/__init__.py,sha256=lwLu1LJhWz3cRzFLfNWuFdS-Rhods6aReqOaqoVaDaM,2564
762
782
  ansible/utils/collection_loader/_collection_config.py,sha256=6r5DY_4kKGQz4qk7u9vsrNq__UmGFlCjtAV-HwJsFaM,3000
763
- ansible/utils/collection_loader/_collection_finder.py,sha256=3E71MX6FU2OmBeK5BpJrh7lQ4Fg6kuiRMA4WxuO3JqY,55125
783
+ ansible/utils/collection_loader/_collection_finder.py,sha256=glMslH2Cvbnk9g8tVvrRTjls5EU30lkF4iReHJG066U,55128
764
784
  ansible/utils/collection_loader/_collection_meta.py,sha256=p2eZArsO8RCl4PlN1x2I-7A7Q8HZpdFoeqfMNVaRgiU,1815
765
785
  ansible/vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
766
786
  ansible/vars/clean.py,sha256=Y9F3gyB1swxNVixpMOMGpG0kVRFAD2OHZLn93WPKgso,6016
767
- ansible/vars/hostvars.py,sha256=EaRFnZbPqAv8PDMF-aS_v6igoV3MNzix_VwuPviwNLI,4365
787
+ ansible/vars/hostvars.py,sha256=cRK_4dssUwIN4aDxxYXEj7KzTazrykQ4PbJotne5oJc,4364
768
788
  ansible/vars/manager.py,sha256=pCLAvO_J_IQPBPPnOb6JHhU5t2dTXUYpj3D3eMxmJKw,28041
769
- ansible/vars/plugins.py,sha256=Qnk83j898hQ-oiJHaKsel177tkYLwm6cCoHed4GPoiA,4519
789
+ ansible/vars/plugins.py,sha256=8svEABS2yBPzEdymdsrZ-0D70boUoCNvcgkWasvtVNo,4533
770
790
  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
791
+ ansible_core-2.19.0b6.dist-info/licenses/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
792
+ ansible_core-2.19.0b6.dist-info/licenses/licenses/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
793
+ ansible_core-2.19.0b6.dist-info/licenses/licenses/BSD-3-Clause.txt,sha256=la0N3fE3Se8vBiuvUcFKA8b-E41G7flTic6P8CkUroE,1548
794
+ ansible_core-2.19.0b6.dist-info/licenses/licenses/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
795
+ ansible_core-2.19.0b6.dist-info/licenses/licenses/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
796
+ ansible_core-2.19.0b6.dist-info/licenses/licenses/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
777
797
  ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
778
798
  ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
779
799
  ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
780
- ansible_test/_data/completion/docker.txt,sha256=bt-LjFgB5VZ7DBIS43VxDrtaK-dcxnZ70D6CFwpTcuE,663
800
+ ansible_test/_data/completion/docker.txt,sha256=ZIZh6j5AlB5A3Dj1rPErwAIa2qJGa2a3LbpqaqGX98c,663
781
801
  ansible_test/_data/completion/network.txt,sha256=BxVN0UxlVkRUrPi9MBArQOe6nR8exaow0oCAznUdfKQ,100
782
- ansible_test/_data/completion/remote.txt,sha256=3SQfQSESlS-tnhi2uqorZ0XaK0im9edF80UPU9kG9pc,913
802
+ ansible_test/_data/completion/remote.txt,sha256=cFj6aW8cKbRbJDYLPkQhh3347mBPyHtgOnk34UrqTgU,972
783
803
  ansible_test/_data/completion/windows.txt,sha256=Ru17yTPK9H4ygz4J5a7wRM9Rqs_HVaULxRmwBJvFJ24,297
784
804
  ansible_test/_data/playbooks/posix_coverage_setup.yml,sha256=PgQNVzVTsNmfnu0sT2SAYiWtkMSOppfmh0oVmAsb7TQ,594
785
805
  ansible_test/_data/playbooks/posix_coverage_teardown.yml,sha256=xHci5QllwJymFtig-hsOXm-Wdrxz063JH14aIyRXhyc,212
@@ -799,9 +819,9 @@ ansible_test/_data/requirements/ansible-test.txt,sha256=3W9TclOM-HcT6VmlhHqyeRIj
799
819
  ansible_test/_data/requirements/ansible.txt,sha256=YC7zdpWV7J-L78x1dQi_BdZwY9zPx870ckRkcn7aQtY,884
800
820
  ansible_test/_data/requirements/constraints.txt,sha256=vPTuYu3DeJoE3q9bPj5l3mGef8m0vWyyVgZ8QRuWJ2g,819
801
821
  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
822
+ ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=xKSbhHRwGc4O04RUJKZIWHVs5qpUS5UOgjhhdplGlL8,169
803
823
  ansible_test/_data/requirements/sanity.changelog.in,sha256=A0-S4lrfGxwfnbBNyA8IZ2slFrmHB70MZYVIQo6ogZE,135
804
- ansible_test/_data/requirements/sanity.changelog.txt,sha256=nLClRYjL171ivTPwMtOi0wWpW_xzuv1e1RQhRxf-hPs,268
824
+ ansible_test/_data/requirements/sanity.changelog.txt,sha256=cQetCVzZfqPNj0uyzCHi9j2Ol4pgYJTWIKlQaRS_Teo,268
805
825
  ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
806
826
  ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
807
827
  ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=XP-A1yZQaohuDbjhs_EBn7tEc3_lFg2gAhIz-WgsgB8,157
@@ -809,16 +829,16 @@ ansible_test/_data/requirements/sanity.import.txt,sha256=pQHaQf9Y7Kya41ETF04WGVm
809
829
  ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
810
830
  ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=ABpuHH_wjTdun2UK0EjJKW3XGH1WNEw0o1ku5TDqjrc,137
811
831
  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
832
+ ansible_test/_data/requirements/sanity.pep8.txt,sha256=Jq9LB_K2XuCY__zXeVF6Yr7UVc26wzgU_dLyGOh7sPs,113
813
833
  ansible_test/_data/requirements/sanity.pslint.ps1,sha256=JoDUUNLXQ4xDXUB5_W00q9o-gZ1oW1oShLp--f5OEIE,1624
814
834
  ansible_test/_data/requirements/sanity.pylint.in,sha256=CqgyF_s4K3o41RSc6KZVicBlhrb4twRm9zbp-HBwFeE,49
815
- ansible_test/_data/requirements/sanity.pylint.txt,sha256=qjpv7mSee1u0THumdz-9ayh1H6PCw6mrFu6cpJFuFcw,215
835
+ ansible_test/_data/requirements/sanity.pylint.txt,sha256=toL12F-SBIwpxt3r528dMoBjoVBcXHiqsuZGtLVWDFU,216
816
836
  ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
817
837
  ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=ZTrFKxqX5TCmxWv-jXBz1S0RpOOfIyGmUsNNA9AdQ9A,150
818
838
  ansible_test/_data/requirements/sanity.validate-modules.in,sha256=OVQi9h1QurdF-wa3-TkBuztXIs-QnyY2g8iYtOpo2cw,117
819
839
  ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=wTbvLDeyTQrRAvAE6rqF5PWY0XPviBWGm_UyG_ER7Uo,211
820
840
  ansible_test/_data/requirements/sanity.yamllint.in,sha256=qtd2lDJ0A39NOP8OpnLX9Rdf_dn_89jh2XCjmmvTgHs,16
821
- ansible_test/_data/requirements/sanity.yamllint.txt,sha256=EL8Fy8Qyl01e2unI0JTpc2mr5wPRYr-ssehQpxrglo0,149
841
+ ansible_test/_data/requirements/sanity.yamllint.txt,sha256=t8qTcbMO9Gi4nSoFq7xzriQs8ZHYQmZ1IRI8DtGFaCo,149
822
842
  ansible_test/_data/requirements/units.txt,sha256=C6f8bZXbZCzpryYQiqlbX6fp_mrLBo3OiNh9025pBxE,228
823
843
  ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
824
844
  ansible_test/_internal/__init__.py,sha256=fiVNUc1Zf6pGY998sRGb_bbR8kt6m4r25UNYJwZpukE,3157
@@ -843,7 +863,7 @@ ansible_test/_internal/encoding.py,sha256=ymPqkmgg7mXUkW6MOARx0cYanX9TLLnu_NXp6n
843
863
  ansible_test/_internal/executor.py,sha256=-SSTYgKckI-dWltBWt67zTU6zO7NVu_O3pgFiJG4DeQ,2960
844
864
  ansible_test/_internal/git.py,sha256=TkYoTZ8CKWlP8dZZmThzzT1myItdP7_LseZ_2BMnIMA,4367
845
865
  ansible_test/_internal/host_configs.py,sha256=fuY7CAhM8Ky3cPcVhHe28Kwzuokzyg9lvr7GVL3o2Bo,18635
846
- ansible_test/_internal/host_profiles.py,sha256=9xPjLzbeWSsaB3iTgtb51iq0sT1-jCHfQvTXmLRgD34,65630
866
+ ansible_test/_internal/host_profiles.py,sha256=yuFKGj1GJYTx0i_ypFwEuhqR3j6_ZZxO4Yqxe7J6zYY,67180
847
867
  ansible_test/_internal/http.py,sha256=P_C5n8hSZ3Q1zA08smmJCh2LvOoaflGasEqnLXZP0L0,3865
848
868
  ansible_test/_internal/init.py,sha256=-OdOvJ3Fz4Sx2aTG9qq7ekKsbVVTqOvRqetOqjOvA6w,506
849
869
  ansible_test/_internal/inventory.py,sha256=ADBpKXxyzF4OiJDpdkj7OqU7uD5gSbdW6sg0rstgFgU,6912
@@ -852,15 +872,15 @@ ansible_test/_internal/junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx
852
872
  ansible_test/_internal/locale_util.py,sha256=tjRbwKmgMQc1ysIhvP8yBhFcNA-2UCaWfQBDgrRFUxU,2161
853
873
  ansible_test/_internal/metadata.py,sha256=O0zLsqbvX9e8N9_I6tX1lkvrLXLMReMD5LTPHqaCTv8,4792
854
874
  ansible_test/_internal/payload.py,sha256=F9sLPiTw-zNq0-zU-L_RIYOsXZmA3nsLWha2W2MoeEs,8013
855
- ansible_test/_internal/provisioning.py,sha256=3ng2z3adbTaYMsyOecADUuWI-OH9nPstPbj5DALPCpI,7321
875
+ ansible_test/_internal/provisioning.py,sha256=BIe-zIbGxFtqtaW8Cagk0cRybYthUIeGfKgmrwSwK2g,7492
856
876
  ansible_test/_internal/pypi_proxy.py,sha256=N9_kuBk6Bko3e8dKC1zi4UfhU0untpQgOK2W984GT_0,6020
857
877
  ansible_test/_internal/python_requirements.py,sha256=yPfwB357wOpx8fg_KInxeTiU0Zx0KFxil3-WAKm0fJY,15206
858
- ansible_test/_internal/ssh.py,sha256=uMzsyH7OD803g9Cdag4RXcy8r5-RTZmhM6E_FHsxEdo,10782
878
+ ansible_test/_internal/ssh.py,sha256=7gTyNiwszPwFSM4aYT4YtAWfAR4lYLnOi7dpnv0SqwA,10635
859
879
  ansible_test/_internal/target.py,sha256=fm1L90VKHOjG3IVfGFKLHBH1LPavDgEu5DAHp08YMik,25321
860
880
  ansible_test/_internal/test.py,sha256=q17SmItAsiBWrSilDBZFSEBugv9QNsG5HzFOAFXcyh4,14516
861
- ansible_test/_internal/thread.py,sha256=eKmxnhy0811ZHjICxO7Q6RwxQcv0NpJTPs5EOrvjJDA,2597
862
- ansible_test/_internal/timeout.py,sha256=OlOzpe_WmKofexL2gxnKXGoIQuOO-7bbPTmi7seOUcs,4053
863
- ansible_test/_internal/util.py,sha256=zbVozq5NKG1x8_oxU64cIZ9lEByYuxgp1g3iXiEuBy8,38909
881
+ ansible_test/_internal/thread.py,sha256=XN9jshWoLPdqTMDjcOQxGk9691FnjUo1K_5UhcRy-O8,2633
882
+ ansible_test/_internal/timeout.py,sha256=KOYPTjgsAX4N2q-4Qn5vFpCWJWBT9YtQCpsU7ZIBvro,4073
883
+ ansible_test/_internal/util.py,sha256=qL7q6KWWqvJiM7Joxh12YfIZ0ClcZcKDGxROHP33VNY,39573
864
884
  ansible_test/_internal/util_common.py,sha256=b9y_gCtlERbE7jqCoQ4Eobjwf7BQ1sv8yfZIDAbKQ5Y,17553
865
885
  ansible_test/_internal/venv.py,sha256=eb5RfjapntulFMTIQieyx8QdHo2LJfjgZY_wx3_htMw,5522
866
886
  ansible_test/_internal/ci/__init__.py,sha256=sZNgkICN4RRFy4Nn-ZB6dCm6Ui9d_xIrrjgaIzZ_VyI,7739
@@ -926,7 +946,7 @@ ansible_test/_internal/commands/coverage/analyze/targets/generate.py,sha256=aEkU
926
946
  ansible_test/_internal/commands/coverage/analyze/targets/missing.py,sha256=c4V8IDd1U3sTi5-I4wYGeDPimMGXdHz-B0iPgiZLyKc,3895
927
947
  ansible_test/_internal/commands/env/__init__.py,sha256=UDLcBD9dqvP52HCVVcBzwnZXAinGspkBsGbk5O4VIts,5167
928
948
  ansible_test/_internal/commands/integration/__init__.py,sha256=PmudtzWSShAnYvSbLX-_--r6Qx4UojNY2Dm77GharC8,37076
929
- ansible_test/_internal/commands/integration/coverage.py,sha256=dIefKblr2tUREAinTrp0WEB1bCAEO-2evENBG8nKsXg,15579
949
+ ansible_test/_internal/commands/integration/coverage.py,sha256=zRAFR2sruJjby64gerAlg_0Yk_exq5WYa1_HWmS5sGA,15676
930
950
  ansible_test/_internal/commands/integration/filters.py,sha256=NnCl3D5EekJlQQVsDD4NKc68l8U2h5IaPw0Ql0O3o1E,12169
931
951
  ansible_test/_internal/commands/integration/network.py,sha256=Wdd-LV5AxfrxkLuhZHL3vrLz8be0wM3LYywQD4OEMZo,2418
932
952
  ansible_test/_internal/commands/integration/posix.py,sha256=SRKJfFMUl3nYiaETNRvRaOfgFrEtk2n9m8YJNN9JvnU,1445
@@ -1012,12 +1032,12 @@ ansible_test/_util/controller/sanity/integration-aliases/yaml_to_json.py,sha256=
1012
1032
  ansible_test/_util/controller/sanity/pep8/current-ignore.txt,sha256=dpV9GzTy9R-crhVF5Kzllg_sXTCjeGEfUAoxJw79Nw4,310
1013
1033
  ansible_test/_util/controller/sanity/pslint/pslint.ps1,sha256=h0fLdkwF7JhGGjApvqAsCU87BKy0E_UiFJ_O7MARz6U,1089
1014
1034
  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
1035
+ ansible_test/_util/controller/sanity/pylint/config/ansible-test-target.cfg,sha256=7mL35gGJijKGUQLhMCP6SEPA6R1-DQ8pKdMgjV6Nnb8,2226
1036
+ ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=TfiS1qpa067_H2FbKdTG-xJwxdQ3hV4K7jAT73Af-Q0,2290
1037
+ ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=jJ1K5-7XP-SLu6cJaZjDSNrJt7SRxwLDhSBWotw9g5Y,2062
1038
+ ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=MrPjqou7RMmSBmai8epIbSCLbYkZ0yyxFcadowXrPs8,4789
1039
+ ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=PHGUd-3F3tkj-Ie8HPFlF2kg3R9F5z92Ric9icrLJs0,4363
1040
+ ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=Tu6mjKhbZiVhHJ-u1vixLxi3rtuSII6avT_NcZ_B6gw,21809
1021
1041
  ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
1022
1042
  ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
1023
1043
  ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=Mb1Mx8WS4RulsORFgyctlFRR0Sn-PYPy4mVu_GYCD18,2359
@@ -1047,11 +1067,11 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=6u
1047
1067
  ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=n5ZrjY_feIK5auGcx21aYP03BQE6Ptu9RrXFAKAJcfE,1999
1048
1068
  ansible_test/_util/target/sanity/compile/compile.py,sha256=w6FO6aI4wiVb4DYNchthqCOrjwWRFmcaEKdM6_s1Vug,1303
1049
1069
  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
1070
+ ansible_test/_util/target/setup/bootstrap.sh,sha256=LVGyk4jlF9oGaUdExCvo4I_yRiD3XXGx56BHPreWvYk,12591
1051
1071
  ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
1052
1072
  ansible_test/_util/target/setup/probe_cgroups.py,sha256=wloSlXxgaQeE9cdpc3Bw3BvE8LktkiE9vq_DpI-cGrY,660
1053
1073
  ansible_test/_util/target/setup/quiet_pip.py,sha256=LiyNCcZpXfLlWOTDndOSeXLX5hk2ukCObOn9GbuxEic,1980
1054
- ansible_test/_util/target/setup/requirements.py,sha256=GOoY7Fy9YwzNGiDFLGIW4WqZ8RmPxJu4I3yLm4CMotY,13865
1074
+ ansible_test/_util/target/setup/requirements.py,sha256=pgETahcdHRtTkqj8zdRFuSYdSscPpZgZtHFXxkWoBvo,13735
1055
1075
  ansible_test/_util/target/tools/virtualenvcheck.py,sha256=t3Z1IufgCwUdh2hf4BDpBzRVhF4A0dASY_CYiAfsxh0,496
1056
1076
  ansible_test/_util/target/tools/yamlcheck.py,sha256=nFbEyJ1qeCeBqynHUiXphyWO7vmVrUgPatx0A-Lj3u8,334
1057
1077
  ansible_test/config/cloud-config-aws.ini.template,sha256=XRzB9pG9aRS_fxLMcOcbyb9NeUHpcTZVXvceIl2GNy8,1280
@@ -1068,8 +1088,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
1068
1088
  ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
1069
1089
  ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
1070
1090
  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,,
1091
+ ansible_core-2.19.0b6.dist-info/METADATA,sha256=09gXQp8n9I2rx0W648yoXwNyyRb3UzFRDbp2frMh0qU,7732
1092
+ ansible_core-2.19.0b6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1093
+ ansible_core-2.19.0b6.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
1094
+ ansible_core-2.19.0b6.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
1095
+ ansible_core-2.19.0b6.dist-info/RECORD,,