ansible-core 2.19.0b2__py3-none-any.whl → 2.19.0b4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ansible/_internal/__init__.py +1 -1
- ansible/_internal/_ansiballz.py +1 -4
- ansible/_internal/_json/__init__.py +1 -1
- ansible/_internal/_templating/_datatag.py +3 -4
- ansible/_internal/_templating/_engine.py +6 -1
- ansible/_internal/_templating/_jinja_plugins.py +2 -6
- ansible/_internal/_testing.py +26 -0
- ansible/cli/__init__.py +3 -2
- ansible/cli/arguments/option_helpers.py +10 -3
- ansible/cli/doc.py +0 -1
- ansible/config/base.yml +5 -23
- ansible/config/manager.py +144 -103
- ansible/constants.py +1 -63
- ansible/errors/__init__.py +6 -2
- ansible/executor/module_common.py +11 -7
- ansible/executor/task_executor.py +6 -8
- ansible/galaxy/api.py +1 -1
- ansible/galaxy/collection/__init__.py +3 -3
- ansible/inventory/manager.py +1 -0
- ansible/module_utils/_internal/_ansiballz.py +4 -30
- ansible/module_utils/_internal/_datatag/_tags.py +3 -25
- ansible/module_utils/_internal/_deprecator.py +134 -0
- ansible/module_utils/_internal/_plugin_info.py +25 -0
- ansible/module_utils/_internal/_validation.py +14 -0
- ansible/module_utils/ansible_release.py +1 -1
- ansible/module_utils/basic.py +64 -17
- ansible/module_utils/common/arg_spec.py +8 -3
- ansible/module_utils/common/messages.py +40 -23
- ansible/module_utils/common/process.py +0 -1
- ansible/module_utils/common/respawn.py +0 -7
- ansible/module_utils/common/warnings.py +13 -13
- ansible/module_utils/datatag.py +13 -13
- ansible/module_utils/facts/virtual/linux.py +1 -1
- ansible/module_utils/parsing/convert_bool.py +6 -0
- ansible/modules/assemble.py +4 -4
- ansible/modules/async_status.py +1 -1
- ansible/modules/cron.py +3 -5
- ansible/modules/dnf5.py +2 -1
- ansible/modules/get_url.py +1 -1
- ansible/modules/git.py +1 -6
- ansible/modules/pip.py +2 -4
- ansible/modules/sysvinit.py +3 -3
- ansible/playbook/task.py +0 -2
- ansible/plugins/__init__.py +18 -8
- ansible/plugins/action/__init__.py +7 -15
- ansible/plugins/action/gather_facts.py +2 -4
- ansible/plugins/action/template.py +3 -0
- ansible/plugins/callback/oneline.py +7 -1
- ansible/plugins/callback/tree.py +7 -1
- ansible/plugins/connection/local.py +1 -1
- ansible/plugins/connection/paramiko_ssh.py +9 -2
- ansible/plugins/doc_fragments/action_core.py +1 -1
- ansible/plugins/filter/core.py +4 -1
- ansible/plugins/inventory/__init__.py +2 -2
- ansible/plugins/loader.py +197 -132
- ansible/plugins/lookup/url.py +2 -2
- ansible/plugins/strategy/__init__.py +6 -6
- ansible/release.py +1 -1
- ansible/template/__init__.py +1 -1
- ansible/utils/collection_loader/__init__.py +2 -0
- ansible/utils/collection_loader/_collection_meta.py +5 -3
- ansible/utils/display.py +137 -71
- ansible/utils/plugin_docs.py +2 -1
- ansible/utils/py3compat.py +1 -7
- ansible/utils/ssh_functions.py +4 -1
- ansible/vars/manager.py +18 -10
- ansible/vars/plugins.py +4 -4
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info}/METADATA +3 -2
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info}/RECORD +82 -79
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info}/WHEEL +1 -1
- ansible_test/_internal/commands/sanity/pylint.py +1 -0
- ansible_test/_internal/docker_util.py +4 -3
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py +486 -0
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py +137 -0
- ansible/module_utils/_internal/_dataclass_annotation_patch.py +0 -64
- ansible/module_utils/_internal/_plugin_exec_context.py +0 -49
- ansible_test/_util/controller/sanity/pylint/plugins/deprecated.py +0 -399
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses}/COPYING +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses/licenses}/Apache-License.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses/licenses}/BSD-3-Clause.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses/licenses}/MIT-license.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses/licenses}/PSF-license.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info/licenses/licenses}/simplified_bsd.txt +0 -0
- {ansible_core-2.19.0b2.dist-info → ansible_core-2.19.0b4.dist-info}/top_level.txt +0 -0
@@ -1,14 +1,15 @@
|
|
1
1
|
ansible/__init__.py,sha256=lcN6K0RviF9nJ6bUtvmwp26GEEy7CzyYivFJ6JIsziA,1215
|
2
2
|
ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
|
3
|
-
ansible/constants.py,sha256=
|
3
|
+
ansible/constants.py,sha256=qef45QpHi-yFFMvllvNKmqFpXdKKr304e5fEZnjgwZc,7989
|
4
4
|
ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
|
5
5
|
ansible/keyword_desc.yml,sha256=5rGCsr-0B8w2D67qBD6q_2WFxfqj9ieb0V_2J-dZJ5E,7547
|
6
|
-
ansible/release.py,sha256=
|
7
|
-
ansible/_internal/__init__.py,sha256=
|
8
|
-
ansible/_internal/_ansiballz.py,sha256=
|
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
9
|
ansible/_internal/_collection_proxy.py,sha256=F7sde4HIxwZVszF1bYkbcNvNsy233rAEjn2OV5ENx90,1235
|
10
10
|
ansible/_internal/_locking.py,sha256=8jMXsKSNCKVZRUesZWb5Hx45g9UVVZ9JXUa_fq2004Q,669
|
11
11
|
ansible/_internal/_task.py,sha256=NCEF3sPxt99n4Gk-e00A9Ce52duffThJm0qlmgkm0nQ,3293
|
12
|
+
ansible/_internal/_testing.py,sha256=WCEwZk8_NP2f2LoY2zjh6VIw6d8bPoFspvfP3-KQMjQ,825
|
12
13
|
ansible/_internal/_wrapt.py,sha256=CLgu2S5V4NmJ9pPFIKarhqiiwAQxni5ISgr-TxARWuE,37963
|
13
14
|
ansible/_internal/_datatag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
15
|
ansible/_internal/_datatag/_tags.py,sha256=8ZLQUX2ggTQluwtLfFbNKa9rKNpxRhqalRzeqSUda2Y,5180
|
@@ -18,7 +19,7 @@ ansible/_internal/_errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
18
19
|
ansible/_internal/_errors/_captured.py,sha256=UXIzFiUMZVAGYlrc2dBJDmRYYDLgj6zOOSaLth7Br5Q,4919
|
19
20
|
ansible/_internal/_errors/_handler.py,sha256=4ZX27G_jrDsomR28OVC0A9WRponpte5V-QGq5ZcDzeE,3455
|
20
21
|
ansible/_internal/_errors/_utils.py,sha256=LKS9CRb8OobJTlLjs0poHiVqmzIdLB7BIW3m3fzLFbQ,11942
|
21
|
-
ansible/_internal/_json/__init__.py,sha256=
|
22
|
+
ansible/_internal/_json/__init__.py,sha256=nYxJrXf9eqa0-ECe6cdEJBgNF9TUX3YJKsazFbtn17s,8825
|
22
23
|
ansible/_internal/_json/_legacy_encoder.py,sha256=clXiPnJ2aR5McuSbajugTPW2wav1wwklivxDKWZ1iFw,1646
|
23
24
|
ansible/_internal/_json/_profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
25
|
ansible/_internal/_json/_profiles/_cache_persistence.py,sha256=PGtAPvMQdC6yHJcHz3HYkkmRMH8SkE4nOjhIg3SMdRA,1817
|
@@ -29,13 +30,13 @@ ansible/_internal/_plugins/_cache.py,sha256=jwVeVm-ZJJaNqdyq7aS4Zt41C6VKyRO_DdwX
|
|
29
30
|
ansible/_internal/_templating/__init__.py,sha256=ABL3nrJpUrYWkU7ZDLPPU0ReEx8GubISi73iaEmfS0k,477
|
30
31
|
ansible/_internal/_templating/_access.py,sha256=dse4dr0TRpZdRbZLfg0VJ7wigNm2iS4DA-JEK6LoTLc,3467
|
31
32
|
ansible/_internal/_templating/_chain_templar.py,sha256=VArYtkVpa0mZY2AhSL_Re2McPxM_lcgZupcDNwb4wB8,2256
|
32
|
-
ansible/_internal/_templating/_datatag.py,sha256=
|
33
|
-
ansible/_internal/_templating/_engine.py,sha256=
|
33
|
+
ansible/_internal/_templating/_datatag.py,sha256=QmDU9CBaiGxT5IBtWmpiQpLnHB4YeLP8I_ow9kgf58g,3831
|
34
|
+
ansible/_internal/_templating/_engine.py,sha256=MGdLke5PypD4kZ96VvwAdfAPGdxzq0OW0DutTIvCj1c,28223
|
34
35
|
ansible/_internal/_templating/_errors.py,sha256=3dxLGu1NLft-9GDuNKNc1K4OIDaduAzFYkNOYBNAYCI,1302
|
35
36
|
ansible/_internal/_templating/_jinja_bits.py,sha256=JWw3WLickQ9daAAf6F_9h6CMZPW2PxIbFmLiDx3Va1A,47181
|
36
37
|
ansible/_internal/_templating/_jinja_common.py,sha256=hJYrV2cKQh5zj6u3Mkr-XWnaRWSU5sDzDN1zQ3UBZA0,12315
|
37
38
|
ansible/_internal/_templating/_jinja_patches.py,sha256=O_1GHYLEYtu1f2g0iSb3GDBrQMk1Qbh43H4CUEP9wcE,1412
|
38
|
-
ansible/_internal/_templating/_jinja_plugins.py,sha256=
|
39
|
+
ansible/_internal/_templating/_jinja_plugins.py,sha256=oeR_jU2VdplZ5uzio2Gn5fM4LmqC0fn2l1ztUDPnG9Q,15160
|
39
40
|
ansible/_internal/_templating/_lazy_containers.py,sha256=Yjc4qr1XjyOMCB2PR2U2qekbENvL_X68BBdyw26L_z4,27168
|
40
41
|
ansible/_internal/_templating/_marker_behaviors.py,sha256=EPQwotuBRagad5k9rGALlfCSV-CbNGXY6oA-DPp6dJ4,3439
|
41
42
|
ansible/_internal/_templating/_transform.py,sha256=UtyZhhcfMSLCz5WghfgUqcSgJtyVy2Xr05LOpYGK3r0,2495
|
@@ -63,19 +64,19 @@ ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged.y
|
|
63
64
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.py,sha256=A6vLIuZMi05Hwzvnm6mZ2besNBIoOGxcby4aM2zcD8M,453
|
64
65
|
ansible/_internal/ansible_collections/ansible/_protomatter/plugins/test/tagged_with.yml,sha256=sRbc5UjNAelH023-mXpQ9z_-17i36-7L_0ynKIRb3EM,520
|
65
66
|
ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
|
66
|
-
ansible/cli/__init__.py,sha256=
|
67
|
+
ansible/cli/__init__.py,sha256=H62BdQKE6h82BIlz0MlOrMKqZE_Y2dW0n9HkqgUySv0,30733
|
67
68
|
ansible/cli/_ssh_askpass.py,sha256=hzDkbYV82KZHWTjbGCHvnDB3hWeYdwoXt-6kFkrkPHg,1365
|
68
69
|
ansible/cli/adhoc.py,sha256=z1IyIKaYi3tc7BFhwUauPYEx7hZjM7N8K5M1xW83Q-0,8391
|
69
70
|
ansible/cli/config.py,sha256=PJ9hQPhPaX4OsJ3Y6B5KOII0b09RieAJRg7-jD3jg3A,28607
|
70
71
|
ansible/cli/console.py,sha256=jDb5rEDpRT1reDGZycXwobNN6hzGRFAPke6IHLd-5cM,22010
|
71
|
-
ansible/cli/doc.py,sha256=
|
72
|
+
ansible/cli/doc.py,sha256=NDM10-ZzKxDM_p3l4miDAiE7FhLGkKct021FJQzROYs,70642
|
72
73
|
ansible/cli/galaxy.py,sha256=ldWsmRxTCN-HXipw1TZvDRJjYLZDPwS_LYIKcEZabqE,95246
|
73
74
|
ansible/cli/inventory.py,sha256=3nrD8YVpbtNXfdFCdUoMyMy6baPOyy1G4Ji8VEID-Vw,16293
|
74
75
|
ansible/cli/playbook.py,sha256=yPOYqwH5qcI6uCVI2k4GrSB0thWQLjlauJOD-sFx11I,10546
|
75
76
|
ansible/cli/pull.py,sha256=Bvc59o9KbLRlcKTCb_pzr-vcs2owDuThpQJlK05xYM8,18425
|
76
77
|
ansible/cli/vault.py,sha256=bG_8LZ697ohjjJqb7aDryQmc9ahQggiZA2IPmgyTDnA,23195
|
77
78
|
ansible/cli/arguments/__init__.py,sha256=_4taT82hZKKTzhdXKmIgqxWwuG21XZxF874V2k1e3us,168
|
78
|
-
ansible/cli/arguments/option_helpers.py,sha256=
|
79
|
+
ansible/cli/arguments/option_helpers.py,sha256=7fJuJ0dq_nC6M1BoOicu92lNhbRwD2379JOniqEbDc0,24445
|
79
80
|
ansible/cli/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
80
81
|
ansible/cli/scripts/ansible_connection_cli_stub.py,sha256=Wz413NyoBudEJdQt6pw2UAB4IveHQma4XoHBzFSENt0,13122
|
81
82
|
ansible/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -84,16 +85,16 @@ ansible/compat/__init__.py,sha256=CvyoCuJ9EdeWO3_nj5fBSQ495YP0tCbXhQ6cramBdGY,10
|
|
84
85
|
ansible/compat/importlib_resources.py,sha256=oCjsu8foADOkMNwRuWiRCjQxO8zEOc-Olc2bKo-Kgh0,572
|
85
86
|
ansible/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
87
|
ansible/config/ansible_builtin_runtime.yml,sha256=nwL_-rqEEmpuSHxZH70pJBiEosDKOPkYIboH3_7LVEY,376076
|
87
|
-
ansible/config/base.yml,sha256=
|
88
|
-
ansible/config/manager.py,sha256=
|
89
|
-
ansible/errors/__init__.py,sha256=
|
88
|
+
ansible/config/base.yml,sha256=Vy4Y6wDVN-7lnVzvTi2pWbQFZrCn9nkiGejXt5DWGWA,88674
|
89
|
+
ansible/config/manager.py,sha256=CC-JhhK4KN07rvXAfiex4sxjFSVtxsLx6E_YnpEOE88,31123
|
90
|
+
ansible/errors/__init__.py,sha256=7nJsA0zFSesC3xVN_qf4-47VQmZ4eWi6R9zTEBW7gUY,16111
|
90
91
|
ansible/executor/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
91
92
|
ansible/executor/interpreter_discovery.py,sha256=UWeAxnHknJCci2gG3zt6edx5Nj4WbHYfJVcmW_DzItY,3858
|
92
|
-
ansible/executor/module_common.py,sha256=
|
93
|
+
ansible/executor/module_common.py,sha256=gr0Rz-gSE-cGKLms-G-PejNHNE45K0e792C2vXMDspA,59432
|
93
94
|
ansible/executor/play_iterator.py,sha256=OY0W7x3F7VUQCjWIogkPqhvm7SFnxOXR5anlqJjHeHY,32282
|
94
95
|
ansible/executor/playbook_executor.py,sha256=5wjvqw22RG4g_JlYDQnLFrUEa8aYQBWdgKhEpNonhKQ,14806
|
95
96
|
ansible/executor/stats.py,sha256=Rw-Q73xYvXnYOt-LJFnHAR03NvVR3ESgbMkHnVGhIPI,3180
|
96
|
-
ansible/executor/task_executor.py,sha256=
|
97
|
+
ansible/executor/task_executor.py,sha256=EJhxQCtz4W6ERZ78o1_xm1h6bMQUwYZoCFKqw-PKU6c,62608
|
97
98
|
ansible/executor/task_queue_manager.py,sha256=aOO0CLUx6zDHG8836NhNVvxf2aZBe-8RVpKtccWXHDs,20785
|
98
99
|
ansible/executor/task_result.py,sha256=GEo2atii06heQ_4eP5BaajpA6nAreEKBVt4cqXr8LiY,10293
|
99
100
|
ansible/executor/discovery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -113,11 +114,11 @@ ansible/executor/powershell/winrm_put_file.ps1,sha256=4qsc-GlqC3Z0E3fQSXkV6oMSVz
|
|
113
114
|
ansible/executor/process/__init__.py,sha256=mRvbCJPA-_veSG5ka3v04G5vsarLVDeB3EWFsu6geSI,749
|
114
115
|
ansible/executor/process/worker.py,sha256=i9K7ngnDyZfA-RJCKLFkuh1iHLQOL22LOpqs37bmyVk,12963
|
115
116
|
ansible/galaxy/__init__.py,sha256=4yfCrbwz9fW-HABMhKPF0ko9_vLz7EMd9c-zg2tfqWU,2497
|
116
|
-
ansible/galaxy/api.py,sha256=
|
117
|
+
ansible/galaxy/api.py,sha256=KGz_0HTScEJKXC9bInwPsGb-Bv3YSpUr2jWmGZLtDD0,40467
|
117
118
|
ansible/galaxy/role.py,sha256=QwOkaguThfzlThtrtFYCr7Tyoa4FBVL2R3n5jZinHNE,21036
|
118
119
|
ansible/galaxy/token.py,sha256=EhSml-RGVtx7QjIo3ctHqUlMWdmJTGujK0RlWQmFPjw,6780
|
119
120
|
ansible/galaxy/user_agent.py,sha256=_Vr4ZJV8HNXhSbhw_dvUr378OjFdyhtLRHyywCjGU6g,760
|
120
|
-
ansible/galaxy/collection/__init__.py,sha256=
|
121
|
+
ansible/galaxy/collection/__init__.py,sha256=GCeDj1XUQaxLDMxPS4u5yYjAaU5A4rCj6MUb7zNsZbQ,78987
|
121
122
|
ansible/galaxy/collection/concrete_artifact_manager.py,sha256=NpvbVoLI5nyEXaef2LwAqQjXCGa8HeMiBz2DY-vKyjQ,29367
|
122
123
|
ansible/galaxy/collection/galaxy_api_proxy.py,sha256=ir_JnTxH5CTvmgnswPkaqbEgMEgaZzW3F11t_NrhWsc,7805
|
123
124
|
ansible/galaxy/collection/gpg.py,sha256=m4_AtZPZyM_D72ARZqAKa-Her9XWICb4ie6KcEh52M8,7540
|
@@ -195,14 +196,14 @@ ansible/inventory/data.py,sha256=Hy4-36CWcKEWvTm55fLw888hjmYvmGcQN0myIZRex5A,104
|
|
195
196
|
ansible/inventory/group.py,sha256=_4q692djOZmJjk2x2UQuS03lSst8zCucJnq9kVZ2uks,9351
|
196
197
|
ansible/inventory/helpers.py,sha256=8DaVEdMhIfan6Fy65AoHO3rILtl3mDzxei4_j8r4fp4,1556
|
197
198
|
ansible/inventory/host.py,sha256=Zzod7oWrsrCfv4v8oOu40ASEsrlk3IIZH4WtGs8rbU4,4654
|
198
|
-
ansible/inventory/manager.py,sha256=
|
199
|
+
ansible/inventory/manager.py,sha256=bZppxa0x0aLvs801zhn1f0fNQhPszKFcvbAjWZmMjes,31812
|
199
200
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
200
201
|
ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
|
201
|
-
ansible/module_utils/ansible_release.py,sha256=
|
202
|
+
ansible/module_utils/ansible_release.py,sha256=IXr3OR35RyOVLr9l3eiSI-Lq37a-X2gZPSBHSI-O6r8,854
|
202
203
|
ansible/module_utils/api.py,sha256=8BmCzQtp9rClsLGlDn4I9iJrUFLCdnoEIxYX59_IL9c,5756
|
203
|
-
ansible/module_utils/basic.py,sha256=
|
204
|
+
ansible/module_utils/basic.py,sha256=e92CZBmokHTcQG-gcmxHZ8efweBMDalcoTAg9rJ-J9M,89711
|
204
205
|
ansible/module_utils/connection.py,sha256=EYcZ-JJ3GnCb8Hhdan2upLJfgfQGvzpPUHNY_qVXyKw,7675
|
205
|
-
ansible/module_utils/datatag.py,sha256=
|
206
|
+
ansible/module_utils/datatag.py,sha256=17e-G9STbcSX6T4QYGU4UEXIp2a-syeOPbtoI6ehWWg,1485
|
206
207
|
ansible/module_utils/errors.py,sha256=cOVAUZaQTeYaSGhKnYsT3L8vshayQHbCXzkT6HIVi_o,3345
|
207
208
|
ansible/module_utils/json_utils.py,sha256=DzkQvlXMD_clOPxRXv7rZwAwMAUii3XH_MvhS4ab39Y,3403
|
208
209
|
ansible/module_utils/service.py,sha256=Dp6mBQfptTtVIot1ehKRkkt4wYLKUNVEfVFffpopR4E,10159
|
@@ -212,19 +213,20 @@ ansible/module_utils/urls.py,sha256=Gr58U25lr79T0e58Lu23GfDFsXK1UDbKLgMNiQ-_j6c,
|
|
212
213
|
ansible/module_utils/yumdnf.py,sha256=dgMG2ASj5CdWgkxt8skEw9kTMt6cQVanhr4oVBSMH7M,7091
|
213
214
|
ansible/module_utils/_internal/__init__.py,sha256=T2ZfKvtofxP_-rFmHt_dONIRxLtCq_-adsAJrPc2JzE,2132
|
214
215
|
ansible/module_utils/_internal/_ambient_context.py,sha256=pH5Rg0BTxA3nPlxdEFXLgJlRM_lne3d-h66H5doQv2s,2582
|
215
|
-
ansible/module_utils/_internal/_ansiballz.py,sha256=
|
216
|
-
ansible/module_utils/_internal/_dataclass_annotation_patch.py,sha256=woeXHzTDpvH4bbIR_srTUkJzXkdbumgwB5mX_NhVb18,2910
|
216
|
+
ansible/module_utils/_internal/_ansiballz.py,sha256=6Cje-il-s0i_OSYImI5A2RMrTr_cMnnEljffUChNhe4,3587
|
217
217
|
ansible/module_utils/_internal/_dataclass_validation.py,sha256=TmPBK90g8Vvizlvu-UIrobgALH0l3LHrFUiysJfyRC8,8684
|
218
218
|
ansible/module_utils/_internal/_debugging.py,sha256=tXTzEuWNteF7SgkdeXZCHSZoxtKyHw2hlBjhlRmw7lk,1037
|
219
|
+
ansible/module_utils/_internal/_deprecator.py,sha256=VUVGGnXtG_1XGyF1EHha6DTl8pWAumY7gk1RU_Ww9Pc,5950
|
219
220
|
ansible/module_utils/_internal/_errors.py,sha256=RFViPohV-MMexNZfbBDtN9d928knMgBB9UPuJpvUzqI,1098
|
220
|
-
ansible/module_utils/_internal/
|
221
|
+
ansible/module_utils/_internal/_plugin_info.py,sha256=sqleowqXgu68WGBEnY9FSmEH1n26vmJSMuMBFWaKVeI,679
|
221
222
|
ansible/module_utils/_internal/_testing.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
222
223
|
ansible/module_utils/_internal/_traceback.py,sha256=Zo-ZgS1Hi9grjIX-0n5hhgodgaKTiqOoe2vAWAe-tZU,3681
|
224
|
+
ansible/module_utils/_internal/_validation.py,sha256=8CKgc_ha53EgtrPCVjOU6GvsARj09U67Ys2vvhQWS6c,558
|
223
225
|
ansible/module_utils/_internal/_concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
226
|
ansible/module_utils/_internal/_concurrent/_daemon_threading.py,sha256=okMP5QPoU9YhYMQF31tUJ6ChyiXJHF-6TD9t6nfjKWE,1085
|
225
227
|
ansible/module_utils/_internal/_concurrent/_futures.py,sha256=Y0hpH1QXavZbKDude5Y8oYlxPvOhQarBhTQRc97odVs,936
|
226
228
|
ansible/module_utils/_internal/_datatag/__init__.py,sha256=nhEvBp-DEK2dtK3iYSdWCWIMPu7GJD0dk72tOkp4VUM,36538
|
227
|
-
ansible/module_utils/_internal/_datatag/_tags.py,sha256=
|
229
|
+
ansible/module_utils/_internal/_datatag/_tags.py,sha256=49RJm4dqYe5Msjypc8WQJLYpTDR5GR6o5V_FAb9vBrM,471
|
228
230
|
ansible/module_utils/_internal/_json/__init__.py,sha256=KscFIf_fl3-TTM2fe68MwETHZBCxf83nZrsbVhqkpEM,2181
|
229
231
|
ansible/module_utils/_internal/_json/_legacy_encoder.py,sha256=Qz2WVbgFxprEpP174zrK7LIKEIk_cLwPsh2gbahavKo,1191
|
230
232
|
ansible/module_utils/_internal/_json/_profiles/__init__.py,sha256=X-ZpGD0AZDfJgOFyxmtusFs3AFzLut2C_XTowHUGxWY,16136
|
@@ -241,21 +243,21 @@ ansible/module_utils/_internal/_patches/_sys_intern_patch.py,sha256=ym-ZcAG56i41
|
|
241
243
|
ansible/module_utils/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
242
244
|
ansible/module_utils/common/_collections_compat.py,sha256=476Gfp4DP1g5ssOW_P-FFakUxC7palI_1TIBtnDBsfk,930
|
243
245
|
ansible/module_utils/common/_utils.py,sha256=940v5oANJiA9XJ6i_RtCRvA1e5GPJh3b8lRXY0KpOSI,1082
|
244
|
-
ansible/module_utils/common/arg_spec.py,sha256=
|
246
|
+
ansible/module_utils/common/arg_spec.py,sha256=kuzYbHM6yey8266Mgo-3Gfw3GLVxav0fIKpY4Nvt5_g,12354
|
245
247
|
ansible/module_utils/common/collections.py,sha256=tVks92bYcYfJQaFkqbOQwV-beuaB0AtUGNKKs8FC_FQ,3708
|
246
248
|
ansible/module_utils/common/dict_transformations.py,sha256=OEb7uuXpAErRp69aMW8KFng0qVBYqIR3133cFWQ5VeI,5525
|
247
249
|
ansible/module_utils/common/file.py,sha256=LyBp_C_nbcsalY8biqQ_2WQ_ZT1iXe8ub1nNv5alI84,2982
|
248
250
|
ansible/module_utils/common/json.py,sha256=i5CkEU4lXiiKsnK3Pwy21yjRTLWHVLkoMDfkN9fwXjY,4048
|
249
251
|
ansible/module_utils/common/locale.py,sha256=X-z_wjmd1ipcWRAahfcDKXr3uxMRqwnvALUS1fQ4XaE,2296
|
250
|
-
ansible/module_utils/common/messages.py,sha256=
|
252
|
+
ansible/module_utils/common/messages.py,sha256=adW8JzA6Kj_efal-P1d6k3LJ7eJ2opPmperzgFVDpqk,4727
|
251
253
|
ansible/module_utils/common/network.py,sha256=ffFrBriNPHFDslP54NRN3QaJADEWBG7eCgv5c7RcOHs,4226
|
252
254
|
ansible/module_utils/common/parameters.py,sha256=cTPoF2XceWvaqcr1Cks0r4yq3PLPhELAGooY4G2MJOY,37484
|
253
|
-
ansible/module_utils/common/process.py,sha256=
|
254
|
-
ansible/module_utils/common/respawn.py,sha256=
|
255
|
+
ansible/module_utils/common/process.py,sha256=4Iantrh13r_70oKljgoMeYi4C0EpjqQawLcbKcvxw9o,2234
|
256
|
+
ansible/module_utils/common/respawn.py,sha256=bR381qAFnXdhneNc6EEaBgbZaiNt4QGEJ0tHoNMtsHk,4250
|
255
257
|
ansible/module_utils/common/sentinel.py,sha256=aPX7KPw1PifJX9wq8qfStEU5oiEPmOJEn76I_08vsjo,2372
|
256
258
|
ansible/module_utils/common/sys_info.py,sha256=sFcTKy_3iurRMBsB7aocWz_H-yO4Bgq_95zgOMl4slQ,5436
|
257
259
|
ansible/module_utils/common/validation.py,sha256=ZwGbL8SntIseZruPDug5zTMBKaBJiJ7h-uoq_Hy7YZ4,20181
|
258
|
-
ansible/module_utils/common/warnings.py,sha256=
|
260
|
+
ansible/module_utils/common/warnings.py,sha256=TbA4gwu29qhjEXSJgbKTJzcbE6yuU0WrIYz84BvJ_u4,3705
|
259
261
|
ansible/module_utils/common/yaml.py,sha256=3w2Xn7jA1Ke8Fohh4yIq_3wo4S4vCpw6JN8lTYJAG0g,2900
|
260
262
|
ansible/module_utils/common/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
263
|
ansible/module_utils/common/text/converters.py,sha256=agSrDCyyMflgpLkpLDxePyadQc-vpbM4RN31dgvKwxw,12141
|
@@ -342,13 +344,13 @@ ansible/module_utils/facts/virtual/base.py,sha256=BijfSGBeCSdDzK2jeeQ2oymgupItCv
|
|
342
344
|
ansible/module_utils/facts/virtual/dragonfly.py,sha256=fx8MZjy6FqfSpshxnPyGs5B4FezmYFqqTr1XibWWSeE,959
|
343
345
|
ansible/module_utils/facts/virtual/freebsd.py,sha256=Wc3hjsxrjWnLaZFBX3zM4lZpeGy4ZS5BTOXTs9SRN-I,3018
|
344
346
|
ansible/module_utils/facts/virtual/hpux.py,sha256=NLQfUpXE7Gh-eZFfLyugvnnJjWFIGv9xqjC_zV4DLKw,2823
|
345
|
-
ansible/module_utils/facts/virtual/linux.py,sha256=
|
347
|
+
ansible/module_utils/facts/virtual/linux.py,sha256=UOtZzsbO6ENkj7-0X1SHOZ8DpyQB8RcZJh3mj4dxBHU,17851
|
346
348
|
ansible/module_utils/facts/virtual/netbsd.py,sha256=53n3E9vowi8kCbFyj7vDeKocZ3OU_TLVSKRJRU8SenE,2896
|
347
349
|
ansible/module_utils/facts/virtual/openbsd.py,sha256=J8Ow7x3J5ZuHFThqAwIdAdTLV1V9vN_U965Q34TAvNA,2785
|
348
350
|
ansible/module_utils/facts/virtual/sunos.py,sha256=9wUiq-2oXlrZbaskVI9c8WmG206AH2j5KO3F5jKo3Ec,5700
|
349
351
|
ansible/module_utils/facts/virtual/sysctl.py,sha256=suvfSdKL5e_AAPCxE_EQRiqNHzpMJYSucT4URyn8Qxw,4741
|
350
352
|
ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
351
|
-
ansible/module_utils/parsing/convert_bool.py,sha256=
|
353
|
+
ansible/module_utils/parsing/convert_bool.py,sha256=WN-LzXRsO96kNig3cngTu_3sjM2xxnoSXAqUfynhGQM,1265
|
352
354
|
ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=NYfvSKqsTCC2YQIx-pGPpKKS3BG499v8ZqQHlHiXsOQ,20127
|
353
355
|
ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
|
354
356
|
ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
|
@@ -367,19 +369,19 @@ ansible/modules/add_host.py,sha256=VZ3gc-phY5myzGijo6AIB1omD9ykfWpoqRvzleZp3DU,3
|
|
367
369
|
ansible/modules/apt.py,sha256=eMoHgh-4SWWu6d3VmxybzP-ACTi0sKaJOkMIqrh1Sjo,62708
|
368
370
|
ansible/modules/apt_key.py,sha256=DmmNkVdRrhOCEhItsbXUA3TuAfXZW4A0CGZu4JeqL90,18485
|
369
371
|
ansible/modules/apt_repository.py,sha256=AzJnzlImqU_ZWZVBMi9xAklzfMqqTOuuOH1Jp5m16pY,31529
|
370
|
-
ansible/modules/assemble.py,sha256=
|
372
|
+
ansible/modules/assemble.py,sha256=4_Cy7mS-4Yhpz0pnj6sVes39DTlgzBLlfTKEsHCQ9D8,9271
|
371
373
|
ansible/modules/assert.py,sha256=B41GXAdBQ6XbYj9G8ENx29fhAlcnyBXm8zDqbd1TnMU,2954
|
372
|
-
ansible/modules/async_status.py,sha256=
|
374
|
+
ansible/modules/async_status.py,sha256=7qs2cyVvoFDLDWhVYzjsfdLPj89EKKjSDw5vZ1WbPH4,4589
|
373
375
|
ansible/modules/async_wrapper.py,sha256=3nwRroF8BImwYQVd9Yb0jldm_c6hdLpOsou53xiHaew,12011
|
374
376
|
ansible/modules/blockinfile.py,sha256=CkzCw73Kbkvgb763C1x_qUMkf6UdJJsyZC_Kiy85Unw,15450
|
375
377
|
ansible/modules/command.py,sha256=v7KAW_uI4zhBwaKBDZaHNSk3coZlyXoG9xGtDOM4MaY,14037
|
376
378
|
ansible/modules/copy.py,sha256=uLltSKg-0poPjtV9WKhq0w4Z_6wOKm8mNR8How-DHXw,26725
|
377
|
-
ansible/modules/cron.py,sha256=
|
379
|
+
ansible/modules/cron.py,sha256=trFmqi8l8jADTDyNZn1COe_-GpCi9aNQj8wUCn5O7SA,26709
|
378
380
|
ansible/modules/deb822_repository.py,sha256=kHBZlGGQ_fA3dMxx_NzjC-L2ZuhkEwTTfLS6ZC6qph4,15760
|
379
381
|
ansible/modules/debconf.py,sha256=YAS1yba0yaxPrfFCLFLQwtHxlpriNxiJiwpDnmm3JP0,9362
|
380
382
|
ansible/modules/debug.py,sha256=E2UADFGHgS78KxCiOdXoojX5G4pAAMz32VGHgaPObNs,2908
|
381
383
|
ansible/modules/dnf.py,sha256=BStesAQE40-hZRMwV8IZW5j3yIv1wd1XGXsXjW1jKfw,52289
|
382
|
-
ansible/modules/dnf5.py,sha256=
|
384
|
+
ansible/modules/dnf5.py,sha256=cMAgXt84CwnI4ujiF0gIAcQ3DXtprhLaetOyMr_z3MQ,31943
|
383
385
|
ansible/modules/dpkg_selections.py,sha256=RWtzxNNOfQ5SdwMwnt_1q-IJhLVb-nxNAriJwRHNVuI,2805
|
384
386
|
ansible/modules/expect.py,sha256=yBisXCvL8OY5c_9AibH8xY3elmKebCwoHZAJj-MFPU0,9279
|
385
387
|
ansible/modules/fail.py,sha256=kppam_caBllcF5IcKEYd-Xc--okSAOWNG9dVbpn2CwM,1659
|
@@ -387,9 +389,9 @@ ansible/modules/fetch.py,sha256=lEf84dEW1qfNJGcYhRBWyDcJPwzN0SvoM5aMj3KepzI,4191
|
|
387
389
|
ansible/modules/file.py,sha256=dIC5HGFGz9vDhnHbNZovf5vcelXsB9qsJNzho40RnDI,40125
|
388
390
|
ansible/modules/find.py,sha256=Ia2QUTCHzc58MiLUOFTkYa_NHgM3rGsuNDtrWVwzvrE,24051
|
389
391
|
ansible/modules/gather_facts.py,sha256=3t2_XMgKuB-U35tnO-JbGEsQ_E31SnZxRQ-B_DVkIu4,3107
|
390
|
-
ansible/modules/get_url.py,sha256=
|
392
|
+
ansible/modules/get_url.py,sha256=1JW5sLkkWbmXmh4rxNX05XHwn0QkcM10dnqqQ_PXMp8,27372
|
391
393
|
ansible/modules/getent.py,sha256=tq3z0Szq_m2gp4DOgACRvNJzh-tkXGzd2Ew8XxrGRWM,5592
|
392
|
-
ansible/modules/git.py,sha256=
|
394
|
+
ansible/modules/git.py,sha256=BtZWA4furfNfPefusAD-ihBROKHdRcBucpvpLJttxJU,57126
|
393
395
|
ansible/modules/group.py,sha256=UKbXzwsgAFWWMlgFW8R3CyzthJXXu5JHnHnj7IlqOac,23747
|
394
396
|
ansible/modules/group_by.py,sha256=_RDYbNJS27eosefvwnBCM86GyobaY-h3ZiWkd04qU68,2416
|
395
397
|
ansible/modules/hostname.py,sha256=oklIQ8jwpnRZ2IAxY5igFg1hQFSHisNjXp-6sCQzmko,28181
|
@@ -408,7 +410,7 @@ ansible/modules/package.py,sha256=ce2O1o3tzPRTyYYvYNw16OLed8ke8f5AAXMGF1vi8XU,37
|
|
408
410
|
ansible/modules/package_facts.py,sha256=Tvq3ULR8oyIx-lCJzY-wwWlL2gGiwLq9jS5H8Hjmick,17284
|
409
411
|
ansible/modules/pause.py,sha256=VzN_Ay94TYvBPTQRG0s0YTnXJkMTh8CEy2KostS2nVY,3796
|
410
412
|
ansible/modules/ping.py,sha256=80pw8eLBvT2pw8f0V3zxqExQhbsKKoA6YfPBvcncTng,2325
|
411
|
-
ansible/modules/pip.py,sha256=
|
413
|
+
ansible/modules/pip.py,sha256=GEtBIzOqZCtQbKwfWfZ-xHzDxtiXdCBe7kH7l-5ghBY,32726
|
412
414
|
ansible/modules/raw.py,sha256=hPToqCii1ZolXVSaPmu-tCouEO1PoDIYjBtevoUvqIE,3741
|
413
415
|
ansible/modules/reboot.py,sha256=P5mbaDi_k-ISjR5M0adW6yeyssahw4QvXYqSN7elypk,4808
|
414
416
|
ansible/modules/replace.py,sha256=jAnGfWD38_zo8gC-rM3LkPwch54w9j044Bpr8mjpP2Q,11683
|
@@ -425,7 +427,7 @@ ansible/modules/stat.py,sha256=cD2l6TQjwrJhIY-SCgS9W_i6WC6FreSDSudFHmH63R8,18658
|
|
425
427
|
ansible/modules/subversion.py,sha256=XEhsibJHb5rg_yioveP_c-THxbh0ZMm0d8qApk02MZg,13485
|
426
428
|
ansible/modules/systemd.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
|
427
429
|
ansible/modules/systemd_service.py,sha256=ZJ8uKx7xsvTQvmBTl5AyyP4KOBNZcjy5rr0CVH4lw2s,24990
|
428
|
-
ansible/modules/sysvinit.py,sha256=
|
430
|
+
ansible/modules/sysvinit.py,sha256=Nrs5gLyHKZsqtm_ymFO0e0wB2KSDXYfbDt-uNlgUiF0,13962
|
429
431
|
ansible/modules/tempfile.py,sha256=3ZljXNOu06T5ObTAz5Ktm_WKFrJACHwLf-01F7isf5A,3570
|
430
432
|
ansible/modules/template.py,sha256=y1zu-ZZ0P-Cpxjddzk5V5GVpQNNfQL8E5sVeAb2plR0,4537
|
431
433
|
ansible/modules/unarchive.py,sha256=ESs24Ceb9CC1rwF06qtOfg4xZdDLmiDbmNyUjVMLefE,45943
|
@@ -469,17 +471,17 @@ ansible/playbook/play_context.py,sha256=fxK1UTt4kXEO9I_-gDX6W0xscCcDWa8QM-m0olD5
|
|
469
471
|
ansible/playbook/playbook_include.py,sha256=ns4aXKJjGhYaFDa9MuY3P8Qw8re87OKoT_8r5D5jEVE,7641
|
470
472
|
ansible/playbook/role_include.py,sha256=DV7num4uVJvkIY4IHgB0uHmE8-gRmaNYbuoqP0-7dTY,7610
|
471
473
|
ansible/playbook/taggable.py,sha256=PsR97eDVSXkrwPWGXHYlZd70hc_WBy2RNV0NvtAnG9w,3710
|
472
|
-
ansible/playbook/task.py,sha256=
|
474
|
+
ansible/playbook/task.py,sha256=iuvBMyaguZ_PCImg6FdY3ZAJ9eodDkozkSEQtpc1zq8,24533
|
473
475
|
ansible/playbook/task_include.py,sha256=y7jSK7CqYEXmXShJOPUi3lCYuZI85197Gp4zLYsyUPw,5258
|
474
476
|
ansible/playbook/role/__init__.py,sha256=cpm0nCmF_F0UO5tXpmkV49auW7DR5YRwdHOUEH1wXSs,29652
|
475
477
|
ansible/playbook/role/definition.py,sha256=44IRVqojhemfrdC7bU7aIiYwcFm6kWr30Hn4x0B2Y8U,9477
|
476
478
|
ansible/playbook/role/include.py,sha256=yGBXglTQDtCpZ2XO1mVxp2UtsdLpLTt30KVR2AbBe5U,2159
|
477
479
|
ansible/playbook/role/metadata.py,sha256=h439HGUucs2gOMUJlp2M0OO0_wnWWlQmTs_sOe8h6Sc,5018
|
478
480
|
ansible/playbook/role/requirement.py,sha256=CNgLa0J6zZk2YQ_aeALnjQvehkkFXhrK8LQQZs7Ztzc,4173
|
479
|
-
ansible/plugins/__init__.py,sha256=
|
481
|
+
ansible/plugins/__init__.py,sha256=h2YINajRVBLM4G5BYnGCgycC0QCF9qys_Ssb6AAM93c,8456
|
480
482
|
ansible/plugins/list.py,sha256=5lQD2AHH4ysJzPBbgYE3ASJvSZOgKppGlgPrQkmGmv8,8895
|
481
|
-
ansible/plugins/loader.py,sha256=
|
482
|
-
ansible/plugins/action/__init__.py,sha256=
|
483
|
+
ansible/plugins/loader.py,sha256=eUiuCsF3Imwl9105VzxcjCeLHHmtfW2eOBQJPVDleTs,81912
|
484
|
+
ansible/plugins/action/__init__.py,sha256=rsCmbq3w1CtXvw0GsiCArK3ab4tJB7_KLoqPkCZF40k,70111
|
483
485
|
ansible/plugins/action/add_host.py,sha256=pz8R7qzCwwinxTx4hEZ3FMsVJpMV3NEfQvn2wqLGLLY,3579
|
484
486
|
ansible/plugins/action/assemble.py,sha256=ePMLNuh7Ie2fp-An9G5yieg9mETqAi0RL5aNK3W47OM,6529
|
485
487
|
ansible/plugins/action/assert.py,sha256=k1kLWyaXNE-XTVWBX1eIHaSZpGg8O8WeJfa62vqzcLM,4007
|
@@ -490,7 +492,7 @@ ansible/plugins/action/debug.py,sha256=KPWtGEPbc119_e1rNQztCB-wzelJObAv16qJNHPUN
|
|
490
492
|
ansible/plugins/action/dnf.py,sha256=2ObzxBLRPBPy2JCp3wWRzR1fIEHzhS5y34CoAzTXqN0,3664
|
491
493
|
ansible/plugins/action/fail.py,sha256=MzIefYaHaRdpjgnqc9eNge0P32btlTPzO6TB22jkadk,1457
|
492
494
|
ansible/plugins/action/fetch.py,sha256=S55lvqxBTmKSV3IrcgKZTZnXz6xCSiPWLeZbUk1VzFI,10166
|
493
|
-
ansible/plugins/action/gather_facts.py,sha256=
|
495
|
+
ansible/plugins/action/gather_facts.py,sha256=VQwq9bwRwtwOiSwzLSc7N7OI5S9BxwuTgmfq6m7ATfM,9487
|
494
496
|
ansible/plugins/action/group_by.py,sha256=zbkI2A-6jyK9Ux--QVWZMJOp2VNxjaAebwJpMG6YYnc,1894
|
495
497
|
ansible/plugins/action/include_vars.py,sha256=c7lKJ7qlcdwm0HP8XRm-8VxK9JLE4feo-WDw0Tjc7RQ,11553
|
496
498
|
ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
|
@@ -503,7 +505,7 @@ ansible/plugins/action/service.py,sha256=7wupKrBwIRnxQZXPHuOiEJaf1KtkgVmfn0ntM5f
|
|
503
505
|
ansible/plugins/action/set_fact.py,sha256=G1Q0HcTaXFIykNvjSG65tFkif0dMuvMvt3T44OlrB6Y,2186
|
504
506
|
ansible/plugins/action/set_stats.py,sha256=wRmlGzp5TAaLrPlz2O6kL6F_uSGYBaxtnF4jWmB3qeY,2476
|
505
507
|
ansible/plugins/action/shell.py,sha256=pd7Dm6gAZXWNAqANd7ETHSs90le7VXAxe7pB97T_zwU,1527
|
506
|
-
ansible/plugins/action/template.py,sha256=
|
508
|
+
ansible/plugins/action/template.py,sha256=yf1OJZN8f4TqmQ2HuFtEM8HFhuxBTR7nKJEak-mz4fQ,8472
|
507
509
|
ansible/plugins/action/unarchive.py,sha256=88h7YM6B9j_2XE5Sp-02o9oKYfnLliIlD5EbVXX3ndY,4859
|
508
510
|
ansible/plugins/action/uri.py,sha256=325UaEu7OY4yXnIj8c1Y0sB_7buzp3oQRoNDVJgwPg0,3981
|
509
511
|
ansible/plugins/action/validate_argument_spec.py,sha256=U-g8PugBg3QTTqkKQwtOS3NNou12yT4NQtXqJ10qBw8,3937
|
@@ -520,18 +522,18 @@ ansible/plugins/callback/__init__.py,sha256=JhhuYyyE6fdM0AIw-caBx2zhHbpkdq0lepOF
|
|
520
522
|
ansible/plugins/callback/default.py,sha256=31TI9bGMftSG4Frp7ixqM9nX5nI0r3TjNgkUon9n3vw,17632
|
521
523
|
ansible/plugins/callback/junit.py,sha256=fZw5BLeojLJqbYiAX7cuCg4iLGkRmQMnod1tu_xKZgI,14541
|
522
524
|
ansible/plugins/callback/minimal.py,sha256=4POsci-dcNcqS34_N6OHfnQEdWRYNou0gpp7n2Icjsw,3237
|
523
|
-
ansible/plugins/callback/oneline.py,sha256=
|
524
|
-
ansible/plugins/callback/tree.py,sha256=
|
525
|
+
ansible/plugins/callback/oneline.py,sha256=GoAhI9TVsrf-4cXXeu6VK2a9Pd0c_Ko2MPp0FlzeepI,4173
|
526
|
+
ansible/plugins/callback/tree.py,sha256=gjKWlkx5i9G0SF7VjKKs8C8j3NG9WVOtXsAsGjKtWQs,3649
|
525
527
|
ansible/plugins/cliconf/__init__.py,sha256=gmcmxY7ssnbeMSRNO8d3qag_QmqM9vkcdBT42AKMy1E,22719
|
526
528
|
ansible/plugins/connection/__init__.py,sha256=5Dk6zdWL_uDwLk1Iy0WVyhqS55qytHMCr3Rt9pUfwfg,19506
|
527
|
-
ansible/plugins/connection/local.py,sha256=
|
528
|
-
ansible/plugins/connection/paramiko_ssh.py,sha256=
|
529
|
+
ansible/plugins/connection/local.py,sha256=ikW0CVPN7bxAbAIVtyYOOaOpqq9mlmo9yVVuZOQXiVM,12176
|
530
|
+
ansible/plugins/connection/paramiko_ssh.py,sha256=q81eDkrwpNox87NLL1jEptUl_PTE7-KDANIhF66dSEQ,27651
|
529
531
|
ansible/plugins/connection/psrp.py,sha256=BZrcc6wu5kZrYs0S0vTnnoV2XXlt98-KcIoR70skSpA,30736
|
530
532
|
ansible/plugins/connection/ssh.py,sha256=fe-JPvDaxTlXibB0FiHvL3emC2dBgahs5QR3Z0RUKbU,71093
|
531
533
|
ansible/plugins/connection/winrm.py,sha256=PPQGzxD72LXofXx-AzWQVEsvstktC9xbUCyCmLfeTJo,38196
|
532
534
|
ansible/plugins/doc_fragments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
533
535
|
ansible/plugins/doc_fragments/action_common_attributes.py,sha256=Xj26JljzTDZD9aZw6nBSvdW-i5z8M7Fk6rzQqNsYKm8,2442
|
534
|
-
ansible/plugins/doc_fragments/action_core.py,sha256=
|
536
|
+
ansible/plugins/doc_fragments/action_core.py,sha256=y8SZ8aTI4Imrm7TZPyEje4Mp5_Qc-itky7y9YfSo_vE,2855
|
535
537
|
ansible/plugins/doc_fragments/backup.py,sha256=xRDCmzQXdP5JuLND3vVcpi-r_ZUxffd65RyfDQvDu6o,507
|
536
538
|
ansible/plugins/doc_fragments/checksum_common.py,sha256=7FvlK39jHxRfWZmLwypBz1Y1ccsEV9CyHDN3uAe6P9Q,995
|
537
539
|
ansible/plugins/doc_fragments/connection_pipelining.py,sha256=qakFITWoDcWWS90fLZ7HbEglbyBrqgg89Cf5Un4k2aI,1182
|
@@ -559,7 +561,7 @@ ansible/plugins/filter/combinations.yml,sha256=LttrIICjapNtZHWnvJD-C9Pv3PIKP16i8
|
|
559
561
|
ansible/plugins/filter/combine.yml,sha256=QH2zy4qr9wPpEyr-XKmphbls60M4ZSdAkj7r3cuvC3Q,1671
|
560
562
|
ansible/plugins/filter/comment.yml,sha256=nJVzBF2Qiwa-qQRioJK42cbWt3Rb5LYmfvGPhrhU8Rc,2139
|
561
563
|
ansible/plugins/filter/commonpath.yml,sha256=SPx3fPy4GPJaKmY2S8aJI1I800FOgErYAKVXV1etp1Q,696
|
562
|
-
ansible/plugins/filter/core.py,sha256=
|
564
|
+
ansible/plugins/filter/core.py,sha256=4vy5t5pfaUjClXgZDaU-Ue4vspNaDsR9tXYyWcJ6Cgw,27418
|
563
565
|
ansible/plugins/filter/dict2items.yml,sha256=A3gL25dyGrSqP44PtqQgg6paUnwReAzC7Brkqel-39E,1523
|
564
566
|
ansible/plugins/filter/difference.yml,sha256=YJnJJMYejCcBaNgxFBhYj-z6OysRHmss1gUgrIJBQFk,1091
|
565
567
|
ansible/plugins/filter/dirname.yml,sha256=Z7p7ay8s3_Zee6gIu7qr4wUC-an7lwLwuoVmgHQCKyg,820
|
@@ -625,7 +627,7 @@ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQ
|
|
625
627
|
ansible/plugins/filter/zip.yml,sha256=LEtp9xRWuPjWDHyHdm1rVYbe1k9hdxGToLrNriRgHc4,1352
|
626
628
|
ansible/plugins/filter/zip_longest.yml,sha256=VHaZlibbKoh9F9cxo9Z7EakellHAvJAsliVRS4Mq_co,1256
|
627
629
|
ansible/plugins/httpapi/__init__.py,sha256=k5YFXPK7gug-6LkI5gihNZR5cMY6N1uRKT4wOYRWdOE,3093
|
628
|
-
ansible/plugins/inventory/__init__.py,sha256=
|
630
|
+
ansible/plugins/inventory/__init__.py,sha256=F8vuUwdDy3PbBgiwsAEC1bnCMzLpWRpxgDkXuZ7sK6M,21873
|
629
631
|
ansible/plugins/inventory/advanced_host_list.py,sha256=9PlZtS78C7uI7Y-ypfwP2u9scck6hA64TVVAX6Ovs-I,2273
|
630
632
|
ansible/plugins/inventory/auto.py,sha256=bGznhN4RfFLznnth2C4QxCfbVdxzyQsmoT6sp8tneIY,2876
|
631
633
|
ansible/plugins/inventory/constructed.py,sha256=N1oj4IDE6rXqTd3r0yGtuwLNYtuzbBRbhFkG-Jawhig,7353
|
@@ -658,7 +660,7 @@ ansible/plugins/lookup/subelements.py,sha256=RPgYHauS5v81uc_PRAgkSOfjkxrWDS1H_Kw
|
|
658
660
|
ansible/plugins/lookup/template.py,sha256=ajdP6NYknpUvWl1P8-QVwrb9_ZNLv-NwtsBHsCvNyv0,7172
|
659
661
|
ansible/plugins/lookup/together.py,sha256=WAtJ2jagHIDL0GaOhnACA1Uh4jVtAGTZqgk61hz_ego,1768
|
660
662
|
ansible/plugins/lookup/unvault.py,sha256=EMS-dOg5b923Rku0lXV-2Gy_Gh7-MLNwT1Lj9hNy8DU,1837
|
661
|
-
ansible/plugins/lookup/url.py,sha256=
|
663
|
+
ansible/plugins/lookup/url.py,sha256=EzMzJpR3JURFDuZCjpvwK4W8cTkZj_5g5p77t3mKOyM,9173
|
662
664
|
ansible/plugins/lookup/varnames.py,sha256=4WKSH-u0ZnQD47r20c5OenaG6Vlamp6nweIZSFOJ0b8,2595
|
663
665
|
ansible/plugins/lookup/vars.py,sha256=gxADVj2vdF_AA612NihSY3HbacczOdr91UqkeaS7xu4,3266
|
664
666
|
ansible/plugins/netconf/__init__.py,sha256=50w1g2rhUo6L-xtiMT20jbR8WyOnhwNSRd2IRNSjNX4,17094
|
@@ -666,7 +668,7 @@ ansible/plugins/shell/__init__.py,sha256=arXgnTmb-1GKNDhxXBqGqp043kLPoOiia1dqK7j
|
|
666
668
|
ansible/plugins/shell/cmd.py,sha256=tH1OZ9RKtNOzOjIJ_XlPcnz0T29LLkIl7X6qlDXZHGA,2170
|
667
669
|
ansible/plugins/shell/powershell.py,sha256=82CqQ4GYHjb63r1CZ27iYEKT2E5R7EpSf4zxJAllthQ,16241
|
668
670
|
ansible/plugins/shell/sh.py,sha256=4EDpzJU9veZyVdTeZvkz1E-EPLqxD5W3_3KOYUliHX0,3898
|
669
|
-
ansible/plugins/strategy/__init__.py,sha256=
|
671
|
+
ansible/plugins/strategy/__init__.py,sha256=S1rowHRLtNkqQzPnDvpWx7BYdzUGkyIvCgTXorCMbE0,56392
|
670
672
|
ansible/plugins/strategy/debug.py,sha256=LJaaals9GQq82Idq4D39NnJrYZPcZiLcu14GsIb3SI8,1205
|
671
673
|
ansible/plugins/strategy/free.py,sha256=gnH0U1BzBzvU0SuOYgFt7A315XQiIvvgHmxR9cLyxoA,15656
|
672
674
|
ansible/plugins/strategy/host_pinned.py,sha256=sVB_qb26bByZKjr8AdvBrLHkt-6VyFGjFcVj1udcFvk,1875
|
@@ -728,14 +730,14 @@ ansible/plugins/test/version.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3m
|
|
728
730
|
ansible/plugins/test/version_compare.yml,sha256=2d55HZGIniPu53z6_bV4C26_1sqRAHJqCwesOU3ma38,3283
|
729
731
|
ansible/plugins/vars/__init__.py,sha256=D3YwVKABesBwag9e7GsLOxlRWqEO5NgfHDmYSq0z_1k,1331
|
730
732
|
ansible/plugins/vars/host_group_vars.py,sha256=II1322kBCCMbBtLL31AydKJ6pmjDZNr5ab6fI7rWNXU,5921
|
731
|
-
ansible/template/__init__.py,sha256=
|
733
|
+
ansible/template/__init__.py,sha256=0Ft9uRn9ZRX19TO47Q2tXqayPtOiQMBFfpAMYkKCBNE,17850
|
732
734
|
ansible/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
733
735
|
ansible/utils/_junit_xml.py,sha256=5op7cjGK7Et0OSjcAAuUEqNWNAv5ZoNI0rkLx2ERXwM,8671
|
734
736
|
ansible/utils/_ssh_agent.py,sha256=2WlQqytGHoSkASLBscMfBOv69QAV0YNuBfKak4dh0nk,21277
|
735
737
|
ansible/utils/cmd_functions.py,sha256=VmGs5ntdVaaqAJHcCTpGG3rYAAcTNl1b2-Iw4YVOt9Y,2180
|
736
738
|
ansible/utils/color.py,sha256=LjJO_12OsJiavBxwSDVXtLxdTzdwd2YWUp1OJ6KcM2g,4057
|
737
739
|
ansible/utils/context_objects.py,sha256=vYulSJkzR3zxsQF_6_AqbPCCMy8WGC5dSqLFXJZqGIo,3034
|
738
|
-
ansible/utils/display.py,sha256=
|
740
|
+
ansible/utils/display.py,sha256=ym8irMsZFDCFD63XJTviZHwnvrO3eX-pJcN_Gh3G8u4,48869
|
739
741
|
ansible/utils/encrypt.py,sha256=j7DcEPr_yHSLYfYEruybjCl7kFk4rKjjTebyGx_-ZbA,7590
|
740
742
|
ansible/utils/fqcn.py,sha256=_wPNWMkR0mqRdkr6fn9FRgEkaCQHw40yardWe97FfEc,1215
|
741
743
|
ansible/utils/galaxy.py,sha256=Un3XgXhx8FoC6tkp1cZ33rmiAaRg634exKruwOVhtdQ,3855
|
@@ -746,26 +748,32 @@ ansible/utils/listify.py,sha256=kDtcewq4gWi-waCfqgHy-eITDbvXA08Gx_qvgbYI62I,1275
|
|
746
748
|
ansible/utils/lock.py,sha256=aP6MfrvWHdO_V756hwFsJG1I9QaQyFJq9W0tf7pCN3I,1306
|
747
749
|
ansible/utils/multiprocessing.py,sha256=Xgs3kXqbzVujXah0-R_D6eUcQoiapbQ-0yclNpkAvs4,614
|
748
750
|
ansible/utils/path.py,sha256=RMuCOlqUyDjIlKTAqNhD2N7iuKkL4jnvXNWh9aMtQRw,6051
|
749
|
-
ansible/utils/plugin_docs.py,sha256=
|
750
|
-
ansible/utils/py3compat.py,sha256=
|
751
|
+
ansible/utils/plugin_docs.py,sha256=A1Fy5qaZuOnrEm896AdHi3znJkVMFveu4C0MQujSBpE,15383
|
752
|
+
ansible/utils/py3compat.py,sha256=l5x0He1q4RRPwSummCN8wHhD8PxlivcgfthllyI_XCg,578
|
751
753
|
ansible/utils/sentinel.py,sha256=3TBjBlaOB6NfoXt5MFLCHVQLbPIFx03N_glcN3cYdjo,323
|
752
754
|
ansible/utils/shlex.py,sha256=eUCZ0VkxMSEoyXCDspS9E4cI8pQWn83OFCt7sbVLB6g,841
|
753
755
|
ansible/utils/singleton.py,sha256=6nYKQz0zmslyaOvbzCSG0Eud1eIgsQiSPZ1DyY7tXtc,1024
|
754
|
-
ansible/utils/ssh_functions.py,sha256=
|
756
|
+
ansible/utils/ssh_functions.py,sha256=cwLETKrXhcdaqYlwuvUdQRv9CZKdnLt5trk9VMVrJO4,2268
|
755
757
|
ansible/utils/unicode.py,sha256=__zbdElrMS9Rrqo9H7tF8zkjKFQCFU8kTtj5cVIITxM,1100
|
756
758
|
ansible/utils/unsafe_proxy.py,sha256=f_oJ0jCOh28Aa4Ps5QuhlBuPJCigVwpNKdfffw3xGC0,2114
|
757
759
|
ansible/utils/vars.py,sha256=RhZssst9c2fRWvlT6YgDW3v45mmea3x1KLucyzKUsE8,11443
|
758
760
|
ansible/utils/version.py,sha256=TKmSzm_MFZVJWpvmOnIEGZzRfeHLwWmeuHj16zGqb2c,7736
|
759
|
-
ansible/utils/collection_loader/__init__.py,sha256=
|
761
|
+
ansible/utils/collection_loader/__init__.py,sha256=lwLu1LJhWz3cRzFLfNWuFdS-Rhods6aReqOaqoVaDaM,2564
|
760
762
|
ansible/utils/collection_loader/_collection_config.py,sha256=6r5DY_4kKGQz4qk7u9vsrNq__UmGFlCjtAV-HwJsFaM,3000
|
761
763
|
ansible/utils/collection_loader/_collection_finder.py,sha256=3E71MX6FU2OmBeK5BpJrh7lQ4Fg6kuiRMA4WxuO3JqY,55125
|
762
|
-
ansible/utils/collection_loader/_collection_meta.py,sha256=
|
764
|
+
ansible/utils/collection_loader/_collection_meta.py,sha256=p2eZArsO8RCl4PlN1x2I-7A7Q8HZpdFoeqfMNVaRgiU,1815
|
763
765
|
ansible/vars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
764
766
|
ansible/vars/clean.py,sha256=Y9F3gyB1swxNVixpMOMGpG0kVRFAD2OHZLn93WPKgso,6016
|
765
767
|
ansible/vars/hostvars.py,sha256=EaRFnZbPqAv8PDMF-aS_v6igoV3MNzix_VwuPviwNLI,4365
|
766
|
-
ansible/vars/manager.py,sha256=
|
767
|
-
ansible/vars/plugins.py,sha256=
|
768
|
+
ansible/vars/manager.py,sha256=pCLAvO_J_IQPBPPnOb6JHhU5t2dTXUYpj3D3eMxmJKw,28041
|
769
|
+
ansible/vars/plugins.py,sha256=Qnk83j898hQ-oiJHaKsel177tkYLwm6cCoHed4GPoiA,4519
|
768
770
|
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
|
769
777
|
ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
|
770
778
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
771
779
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -830,7 +838,7 @@ ansible_test/_internal/coverage_util.py,sha256=h1RC2h_019sOMOYMceZIx8ZIhXBNbHJcz
|
|
830
838
|
ansible_test/_internal/data.py,sha256=8APH-Bm6CeFO9ngWgZC8IxHeFzlxn0OQd6D5G1msSZU,11185
|
831
839
|
ansible_test/_internal/delegation.py,sha256=kMZB2JEJ4Ty7mqysc1RctIPXWhq4Y96v0-Vsap1YhrY,13419
|
832
840
|
ansible_test/_internal/diff.py,sha256=uzgf3ckU9kj3-pIsX_EXVVfFT7HqK8wDd6gE5JiCFlE,7311
|
833
|
-
ansible_test/_internal/docker_util.py,sha256=
|
841
|
+
ansible_test/_internal/docker_util.py,sha256=oqDeoBagpaOb2tazdJieSd7jssQjoygEq4M10UstlO0,38322
|
834
842
|
ansible_test/_internal/encoding.py,sha256=ymPqkmgg7mXUkW6MOARx0cYanX9TLLnu_NXp6n3Ujus,1380
|
835
843
|
ansible_test/_internal/executor.py,sha256=-SSTYgKckI-dWltBWt67zTU6zO7NVu_O3pgFiJG4DeQ,2960
|
836
844
|
ansible_test/_internal/git.py,sha256=TkYoTZ8CKWlP8dZZmThzzT1myItdP7_LseZ_2BMnIMA,4367
|
@@ -949,7 +957,7 @@ ansible_test/_internal/commands/sanity/import.py,sha256=FIlRTYyTuNb4zXgpmnfQa8Fv
|
|
949
957
|
ansible_test/_internal/commands/sanity/integration_aliases.py,sha256=c1yrCvCn1ldGv-D5ME42OrtYWydJQJ45kAe-LtETClw,16222
|
950
958
|
ansible_test/_internal/commands/sanity/pep8.py,sha256=PCGSymfPCUpX0Y966jV97mw3D6cpwPqPA5SwOUfEhkI,3126
|
951
959
|
ansible_test/_internal/commands/sanity/pslint.py,sha256=9k1zG_hdpTzq_6RN6RCH0TvWsIOXrJ9Gn_7OE_hWKfU,3211
|
952
|
-
ansible_test/_internal/commands/sanity/pylint.py,sha256=
|
960
|
+
ansible_test/_internal/commands/sanity/pylint.py,sha256=kS_y-rMNNpJ21Nn_gPL9Xz1fx0m2KNmCHJux7lMFoyg,11839
|
953
961
|
ansible_test/_internal/commands/sanity/shellcheck.py,sha256=ib4SFUmDjnLsnfa5PTwuh30_K8SB5CNC93_H7LKO82E,3071
|
954
962
|
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=JCWt69fM_2SGDEneT8J2j_YS79zXCouMLMbYIBMmiT4,8187
|
955
963
|
ansible_test/_internal/commands/sanity/yamllint.py,sha256=B0PBgrT0bBIhvee6yM1qFWQupeQOGiV6_jmbIuVQ2_M,3424
|
@@ -1009,7 +1017,8 @@ ansible_test/_util/controller/sanity/pylint/config/ansible-test.cfg,sha256=DJyZi
|
|
1009
1017
|
ansible_test/_util/controller/sanity/pylint/config/code-smell.cfg,sha256=sp-BrEpQVZebA1FVRtb1WVegyEr5O8zj_F_1NCVuRvc,1942
|
1010
1018
|
ansible_test/_util/controller/sanity/pylint/config/collection.cfg,sha256=h2qhEF9_RvP70katitXYVjePtJDzAsGJPeARQdhBFlE,4669
|
1011
1019
|
ansible_test/_util/controller/sanity/pylint/config/default.cfg,sha256=D33wbIVfOBjkvxgWAPfN48aMZY4jh57xupsBQh6C-kg,4243
|
1012
|
-
ansible_test/_util/controller/sanity/pylint/plugins/
|
1020
|
+
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_calls.py,sha256=1vTbPAGaA3KAiJ60dKWGrakufqIgJ5o_vwFL-e0GsaU,19447
|
1021
|
+
ansible_test/_util/controller/sanity/pylint/plugins/deprecated_comment.py,sha256=tmQf_-2VAT2GVfwa9X9ruBcaj0Sz6Ifx4cXmdzJ99SQ,5226
|
1013
1022
|
ansible_test/_util/controller/sanity/pylint/plugins/hide_unraisable.py,sha256=s0AIoK03uqZSTwXSLvd4oXvf4WJ0Ckol5ingitHoMr4,836
|
1014
1023
|
ansible_test/_util/controller/sanity/pylint/plugins/string_format.py,sha256=Mb1Mx8WS4RulsORFgyctlFRR0Sn-PYPy4mVu_GYCD18,2359
|
1015
1024
|
ansible_test/_util/controller/sanity/pylint/plugins/unwanted.py,sha256=6P2KWuLmkfct-GtHa1NBSkGeviIQ8iZwcvuU3_Hc1Bw,8794
|
@@ -1059,14 +1068,8 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
|
|
1059
1068
|
ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
|
1060
1069
|
ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
|
1061
1070
|
ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
|
1062
|
-
ansible_core-2.19.
|
1063
|
-
ansible_core-2.19.
|
1064
|
-
ansible_core-2.19.
|
1065
|
-
ansible_core-2.19.
|
1066
|
-
ansible_core-2.19.
|
1067
|
-
ansible_core-2.19.0b2.dist-info/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
|
1068
|
-
ansible_core-2.19.0b2.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
1069
|
-
ansible_core-2.19.0b2.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
|
1070
|
-
ansible_core-2.19.0b2.dist-info/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
|
1071
|
-
ansible_core-2.19.0b2.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
1072
|
-
ansible_core-2.19.0b2.dist-info/RECORD,,
|
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,,
|
@@ -240,6 +240,7 @@ class PylintTest(SanitySingleVersion):
|
|
240
240
|
# plugin: deprecated (ansible-test)
|
241
241
|
if data_context().content.collection:
|
242
242
|
plugin_options.update({'--collection-name': data_context().content.collection.full_name})
|
243
|
+
plugin_options.update({'--collection-path': os.path.join(data_context().content.collection.root, data_context().content.collection.directory)})
|
243
244
|
|
244
245
|
if collection_detail and collection_detail.version:
|
245
246
|
plugin_options.update({'--collection-version': collection_detail.version})
|
@@ -722,9 +722,10 @@ def docker_rm(args: CommonConfig, container_id: str) -> None:
|
|
722
722
|
"""Remove the specified container."""
|
723
723
|
try:
|
724
724
|
# Stop the container with SIGKILL immediately, then remove the container.
|
725
|
-
#
|
726
|
-
#
|
727
|
-
|
725
|
+
# Docker supports `--timeout` for stop. The `--time` option was deprecated in v28.0.
|
726
|
+
# Podman supports `--time` for stop. The `--timeout` option was deprecated in 1.9.0.
|
727
|
+
# Both Docker and Podman support the `-t` option for stop.
|
728
|
+
docker_command(args, ['stop', '-t', '0', container_id], capture=True)
|
728
729
|
docker_command(args, ['rm', container_id], capture=True)
|
729
730
|
except SubprocessError as ex:
|
730
731
|
# Both Podman and Docker report an error if the container does not exist.
|