ansible-core 2.13.11__py3-none-any.whl → 2.13.12rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansible-core might be problematic. Click here for more details.
- ansible/cli/config.py +1 -0
- ansible/cli/galaxy.py +6 -2
- ansible/cli/inventory.py +1 -1
- ansible/galaxy/role.py +33 -1
- ansible/module_utils/ansible_release.py +1 -1
- ansible/release.py +1 -1
- ansible_core-2.13.12rc1.dist-info/METADATA +128 -0
- {ansible_core-2.13.11.dist-info → ansible_core-2.13.12rc1.dist-info}/RECORD +39 -38
- {ansible_core-2.13.11.dist-info → ansible_core-2.13.12rc1.dist-info}/WHEEL +1 -1
- ansible_test/_data/completion/remote.txt +2 -2
- ansible_test/_data/requirements/sanity.ansible-doc.txt +2 -0
- ansible_test/_data/requirements/sanity.changelog.txt +2 -0
- ansible_test/_data/requirements/sanity.import.plugin.txt +2 -0
- ansible_test/_data/requirements/sanity.import.txt +2 -0
- ansible_test/_data/requirements/sanity.integration-aliases.txt +2 -0
- ansible_test/_data/requirements/sanity.pylint.txt +2 -0
- ansible_test/_data/requirements/sanity.runtime-metadata.txt +2 -0
- ansible_test/_data/requirements/sanity.validate-modules.txt +2 -0
- ansible_test/_data/requirements/sanity.yamllint.txt +2 -0
- ansible_test/_internal/ansible_util.py +57 -4
- ansible_test/_internal/classification/__init__.py +6 -13
- ansible_test/_internal/classification/python.py +0 -1
- ansible_test/_internal/commands/sanity/__init__.py +35 -1
- ansible_test/_internal/commands/sanity/bin_symlinks.py +102 -0
- ansible_test/_internal/commands/sanity/integration_aliases.py +401 -0
- ansible_test/_internal/commands/sanity/validate_modules.py +5 -1
- ansible_test/_internal/constants.py +1 -0
- ansible_test/_internal/delegation.py +5 -2
- ansible_test/_internal/provider/layout/ansible.py +1 -1
- ansible_test/_internal/provider/source/unversioned.py +0 -3
- ansible_test/_internal/python_requirements.py +7 -0
- ansible_test/_internal/util.py +0 -2
- ansible_test/_util/target/setup/ConfigureRemotingForAnsible.ps1 +1 -1
- ansible_test/_util/target/setup/bootstrap.sh +2 -0
- ansible_test/_util/target/setup/requirements.py +63 -0
- ansible_core-2.13.11.dist-info/METADATA +0 -154
- ansible_test/_internal/commands/sanity/sanity_docs.py +0 -60
- {ansible_core-2.13.11.data → ansible_core-2.13.12rc1.data}/scripts/ansible-test +0 -0
- {ansible_core-2.13.11.dist-info → ansible_core-2.13.12rc1.dist-info}/COPYING +0 -0
- {ansible_core-2.13.11.dist-info → ansible_core-2.13.12rc1.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.13.11.dist-info → ansible_core-2.13.12rc1.dist-info}/top_level.txt +0 -0
ansible/cli/config.py
CHANGED
ansible/cli/galaxy.py
CHANGED
|
@@ -10,6 +10,7 @@ __metaclass__ = type
|
|
|
10
10
|
# ansible.cli needs to be imported first, to ensure the source bin/* scripts run that code first
|
|
11
11
|
from ansible.cli import CLI
|
|
12
12
|
|
|
13
|
+
import functools
|
|
13
14
|
import json
|
|
14
15
|
import os.path
|
|
15
16
|
import re
|
|
@@ -82,6 +83,7 @@ def with_collection_artifacts_manager(wrapped_method):
|
|
|
82
83
|
the related temporary directory auto-cleanup around the target
|
|
83
84
|
method invocation.
|
|
84
85
|
"""
|
|
86
|
+
@functools.wraps(wrapped_method)
|
|
85
87
|
def method_wrapper(*args, **kwargs):
|
|
86
88
|
if 'artifacts_manager' in kwargs:
|
|
87
89
|
return wrapped_method(*args, **kwargs)
|
|
@@ -271,6 +273,7 @@ class GalaxyCLI(CLI):
|
|
|
271
273
|
|
|
272
274
|
# Add sub parser for the Galaxy collection actions
|
|
273
275
|
collection = type_parser.add_parser('collection', help='Manage an Ansible Galaxy collection.')
|
|
276
|
+
collection.set_defaults(func=self.execute_collection) # to satisfy doc build
|
|
274
277
|
collection_parser = collection.add_subparsers(metavar='COLLECTION_ACTION', dest='action')
|
|
275
278
|
collection_parser.required = True
|
|
276
279
|
self.add_download_options(collection_parser, parents=[common, cache_options])
|
|
@@ -283,6 +286,7 @@ class GalaxyCLI(CLI):
|
|
|
283
286
|
|
|
284
287
|
# Add sub parser for the Galaxy role actions
|
|
285
288
|
role = type_parser.add_parser('role', help='Manage an Ansible Galaxy role.')
|
|
289
|
+
role.set_defaults(func=self.execute_role) # to satisfy doc build
|
|
286
290
|
role_parser = role.add_subparsers(metavar='ROLE_ACTION', dest='action')
|
|
287
291
|
role_parser.required = True
|
|
288
292
|
self.add_init_options(role_parser, parents=[common, force, offline])
|
|
@@ -984,6 +988,7 @@ class GalaxyCLI(CLI):
|
|
|
984
988
|
|
|
985
989
|
@with_collection_artifacts_manager
|
|
986
990
|
def execute_download(self, artifacts_manager=None):
|
|
991
|
+
"""Download collections and their dependencies as a tarball for an offline install."""
|
|
987
992
|
collections = context.CLIARGS['args']
|
|
988
993
|
no_deps = context.CLIARGS['no_deps']
|
|
989
994
|
download_path = context.CLIARGS['download_path']
|
|
@@ -1210,6 +1215,7 @@ class GalaxyCLI(CLI):
|
|
|
1210
1215
|
|
|
1211
1216
|
@with_collection_artifacts_manager
|
|
1212
1217
|
def execute_verify(self, artifacts_manager=None):
|
|
1218
|
+
"""Compare checksums with the collection(s) found on the server and the installed copy. This does not verify dependencies."""
|
|
1213
1219
|
|
|
1214
1220
|
collections = context.CLIARGS['args']
|
|
1215
1221
|
search_paths = context.CLIARGS['collections_path']
|
|
@@ -1247,8 +1253,6 @@ class GalaxyCLI(CLI):
|
|
|
1247
1253
|
You can pass in a list (roles or collections) or use the file
|
|
1248
1254
|
option listed below (these are mutually exclusive). If you pass in a list, it
|
|
1249
1255
|
can be a name (which will be downloaded via the galaxy API and github), or it can be a local tar archive file.
|
|
1250
|
-
|
|
1251
|
-
:param artifacts_manager: Artifacts manager.
|
|
1252
1256
|
"""
|
|
1253
1257
|
install_items = context.CLIARGS['args']
|
|
1254
1258
|
requirements_file = context.CLIARGS['requirements']
|
ansible/cli/inventory.py
CHANGED
|
@@ -65,7 +65,7 @@ class InventoryCLI(CLI):
|
|
|
65
65
|
def init_parser(self):
|
|
66
66
|
super(InventoryCLI, self).init_parser(
|
|
67
67
|
usage='usage: %prog [options] [host|group]',
|
|
68
|
-
|
|
68
|
+
desc='Show Ansible inventory information, by default it uses the inventory script JSON format')
|
|
69
69
|
|
|
70
70
|
opt_help.add_inventory_options(self.parser)
|
|
71
71
|
opt_help.add_vault_options(self.parser)
|
ansible/galaxy/role.py
CHANGED
|
@@ -24,6 +24,7 @@ __metaclass__ = type
|
|
|
24
24
|
|
|
25
25
|
import errno
|
|
26
26
|
import datetime
|
|
27
|
+
import functools
|
|
27
28
|
import os
|
|
28
29
|
import tarfile
|
|
29
30
|
import tempfile
|
|
@@ -43,6 +44,32 @@ from ansible.utils.display import Display
|
|
|
43
44
|
display = Display()
|
|
44
45
|
|
|
45
46
|
|
|
47
|
+
@functools.lru_cache(maxsize=None)
|
|
48
|
+
def _check_working_data_filter() -> bool:
|
|
49
|
+
"""
|
|
50
|
+
Check if tarfile.data_filter implementation is working
|
|
51
|
+
for the current Python version or not
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
# Implemented the following code to circumvent broken implementation of data_filter
|
|
55
|
+
# in tarfile. See for more information - https://github.com/python/cpython/issues/107845
|
|
56
|
+
# deprecated: description='probing broken data filter implementation' python_version='3.11'
|
|
57
|
+
ret = False
|
|
58
|
+
if hasattr(tarfile, 'data_filter'):
|
|
59
|
+
# We explicitly check if tarfile.data_filter is broken or not
|
|
60
|
+
ti = tarfile.TarInfo('docs/README.md')
|
|
61
|
+
ti.type = tarfile.SYMTYPE
|
|
62
|
+
ti.linkname = '../README.md'
|
|
63
|
+
|
|
64
|
+
try:
|
|
65
|
+
tarfile.data_filter(ti, '/foo')
|
|
66
|
+
except tarfile.LinkOutsideDestinationError:
|
|
67
|
+
pass
|
|
68
|
+
else:
|
|
69
|
+
ret = True
|
|
70
|
+
return ret
|
|
71
|
+
|
|
72
|
+
|
|
46
73
|
class GalaxyRole(object):
|
|
47
74
|
|
|
48
75
|
SUPPORTED_SCMS = set(['git', 'hg'])
|
|
@@ -358,7 +385,12 @@ class GalaxyRole(object):
|
|
|
358
385
|
if n_part != '..' and not n_part.startswith('~') and '$' not in n_part:
|
|
359
386
|
n_final_parts.append(n_part)
|
|
360
387
|
member.name = os.path.join(*n_final_parts)
|
|
361
|
-
|
|
388
|
+
|
|
389
|
+
if _check_working_data_filter():
|
|
390
|
+
# deprecated: description='extract fallback without filter' python_version='3.11'
|
|
391
|
+
role_tar_file.extract(member, to_native(self.path), filter='data') # type: ignore[call-arg]
|
|
392
|
+
else:
|
|
393
|
+
role_tar_file.extract(member, to_native(self.path))
|
|
362
394
|
|
|
363
395
|
# write out the install info file for later use
|
|
364
396
|
self._write_galaxy_install_info()
|
ansible/release.py
CHANGED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ansible-core
|
|
3
|
+
Version: 2.13.12rc1
|
|
4
|
+
Summary: Radically simple IT automation
|
|
5
|
+
Home-page: https://ansible.com/
|
|
6
|
+
Author: Ansible, Inc.
|
|
7
|
+
Author-email: info@ansible.com
|
|
8
|
+
License: GPLv3+
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ansible/ansible/issues
|
|
10
|
+
Project-URL: CI: Azure Pipelines, https://dev.azure.com/ansible/ansible/
|
|
11
|
+
Project-URL: Code of Conduct, https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
|
|
12
|
+
Project-URL: Documentation, https://docs.ansible.com/ansible-core/
|
|
13
|
+
Project-URL: Mailing lists, https://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information
|
|
14
|
+
Project-URL: Source Code, https://github.com/ansible/ansible
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Classifier: Environment :: Console
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: Intended Audience :: Information Technology
|
|
19
|
+
Classifier: Intended Audience :: System Administrators
|
|
20
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
21
|
+
Classifier: Natural Language :: English
|
|
22
|
+
Classifier: Operating System :: POSIX
|
|
23
|
+
Classifier: Programming Language :: Python :: 3
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
27
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
|
+
Classifier: Topic :: System :: Installation/Setup
|
|
29
|
+
Classifier: Topic :: System :: Systems Administration
|
|
30
|
+
Classifier: Topic :: Utilities
|
|
31
|
+
Requires-Python: >=3.8
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
License-File: COPYING
|
|
34
|
+
Requires-Dist: jinja2 >=3.0.0
|
|
35
|
+
Requires-Dist: PyYAML >=5.1
|
|
36
|
+
Requires-Dist: cryptography
|
|
37
|
+
Requires-Dist: packaging
|
|
38
|
+
Requires-Dist: resolvelib <0.9.0,>=0.5.3
|
|
39
|
+
|
|
40
|
+
[](https://pypi.org/project/ansible-core)
|
|
41
|
+
[](https://docs.ansible.com/ansible/latest/)
|
|
42
|
+
[](https://docs.ansible.com/ansible/latest/community/communication.html)
|
|
43
|
+
[](https://dev.azure.com/ansible/ansible/_build/latest?definitionId=20&branchName=devel)
|
|
44
|
+
[](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html)
|
|
45
|
+
[](https://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information)
|
|
46
|
+
[](COPYING)
|
|
47
|
+
[](https://bestpractices.coreinfrastructure.org/projects/2372)
|
|
48
|
+
|
|
49
|
+
# Ansible
|
|
50
|
+
|
|
51
|
+
Ansible is a radically simple IT automation system. It handles
|
|
52
|
+
configuration management, application deployment, cloud provisioning,
|
|
53
|
+
ad-hoc task execution, network automation, and multi-node orchestration. Ansible makes complex
|
|
54
|
+
changes like zero-downtime rolling updates with load balancers easy. More information on the Ansible [website](https://ansible.com/).
|
|
55
|
+
|
|
56
|
+
## Design Principles
|
|
57
|
+
|
|
58
|
+
* Have an extremely simple setup process with a minimal learning curve.
|
|
59
|
+
* Manage machines quickly and in parallel.
|
|
60
|
+
* Avoid custom-agents and additional open ports, be agentless by
|
|
61
|
+
leveraging the existing SSH daemon.
|
|
62
|
+
* Describe infrastructure in a language that is both machine and human
|
|
63
|
+
friendly.
|
|
64
|
+
* Focus on security and easy auditability/review/rewriting of content.
|
|
65
|
+
* Manage new remote machines instantly, without bootstrapping any
|
|
66
|
+
software.
|
|
67
|
+
* Allow module development in any dynamic language, not just Python.
|
|
68
|
+
* Be usable as non-root.
|
|
69
|
+
* Be the easiest IT automation system to use, ever.
|
|
70
|
+
|
|
71
|
+
## Use Ansible
|
|
72
|
+
|
|
73
|
+
You can install a released version of Ansible with `pip` or a package manager. See our
|
|
74
|
+
[installation guide](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html) for details on installing Ansible
|
|
75
|
+
on a variety of platforms.
|
|
76
|
+
|
|
77
|
+
Power users and developers can run the `devel` branch, which has the latest
|
|
78
|
+
features and fixes, directly. Although it is reasonably stable, you are more likely to encounter
|
|
79
|
+
breaking changes when running the `devel` branch. We recommend getting involved
|
|
80
|
+
in the Ansible community if you want to run the `devel` branch.
|
|
81
|
+
|
|
82
|
+
## Get Involved
|
|
83
|
+
|
|
84
|
+
* Read [Community Information](https://docs.ansible.com/ansible/latest/community) for all
|
|
85
|
+
kinds of ways to contribute to and interact with the project,
|
|
86
|
+
including mailing list information and how to submit bug reports and
|
|
87
|
+
code to Ansible.
|
|
88
|
+
* Join a [Working Group](https://github.com/ansible/community/wiki),
|
|
89
|
+
an organized community devoted to a specific technology domain or platform.
|
|
90
|
+
* Submit a proposed code update through a pull request to the `devel` branch.
|
|
91
|
+
* Talk to us before making larger changes
|
|
92
|
+
to avoid duplicate efforts. This not only helps everyone
|
|
93
|
+
know what is going on, but it also helps save time and effort if we decide
|
|
94
|
+
some changes are needed.
|
|
95
|
+
* For a list of email lists, IRC channels and Working Groups, see the
|
|
96
|
+
[Communication page](https://docs.ansible.com/ansible/latest/community/communication.html)
|
|
97
|
+
|
|
98
|
+
## Coding Guidelines
|
|
99
|
+
|
|
100
|
+
We document our Coding Guidelines in the [Developer Guide](https://docs.ansible.com/ansible/devel/dev_guide/). We particularly suggest you review:
|
|
101
|
+
|
|
102
|
+
* [Contributing your module to Ansible](https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_checklist.html)
|
|
103
|
+
* [Conventions, tips, and pitfalls](https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_best_practices.html)
|
|
104
|
+
|
|
105
|
+
## Branch Info
|
|
106
|
+
|
|
107
|
+
* The `devel` branch corresponds to the release actively under development.
|
|
108
|
+
* The `stable-2.X` branches correspond to stable releases.
|
|
109
|
+
* Create a branch based on `devel` and set up a [dev environment](https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_general.html#common-environment-setup) if you want to open a PR.
|
|
110
|
+
* See the [Ansible release and maintenance](https://docs.ansible.com/ansible/devel/reference_appendices/release_and_maintenance.html) page for information about active branches.
|
|
111
|
+
|
|
112
|
+
## Roadmap
|
|
113
|
+
|
|
114
|
+
Based on team and community feedback, an initial roadmap will be published for a major or minor version (ex: 2.7, 2.8).
|
|
115
|
+
The [Ansible Roadmap page](https://docs.ansible.com/ansible/devel/roadmap/) details what is planned and how to influence the roadmap.
|
|
116
|
+
|
|
117
|
+
## Authors
|
|
118
|
+
|
|
119
|
+
Ansible was created by [Michael DeHaan](https://github.com/mpdehaan)
|
|
120
|
+
and has contributions from over 5000 users (and growing). Thanks everyone!
|
|
121
|
+
|
|
122
|
+
[Ansible](https://www.ansible.com) is sponsored by [Red Hat, Inc.](https://www.redhat.com)
|
|
123
|
+
|
|
124
|
+
## License
|
|
125
|
+
|
|
126
|
+
GNU General Public License v3.0 or later
|
|
127
|
+
|
|
128
|
+
See [COPYING](COPYING) to see the full text.
|
|
@@ -3,15 +3,15 @@ ansible/__main__.py,sha256=hwZGuCn2AAmZK_S7Tjp-5fcOD8ckMtnOa5G5w2QsEHI,1394
|
|
|
3
3
|
ansible/constants.py,sha256=YlrxSyBWSu7qjW2cQWV2hKEdiUl4et2QlsuNum2UmLc,8663
|
|
4
4
|
ansible/context.py,sha256=OzSlaA_GgGRyyf5I209sy19_eGOX6HXn441W9w_FcvU,2018
|
|
5
5
|
ansible/keyword_desc.yml,sha256=FYY0Ld1Xc3AxJ_Tefz78kRSYzIKGS8qcPtVk370J118,7367
|
|
6
|
-
ansible/release.py,sha256=
|
|
6
|
+
ansible/release.py,sha256=NvPRIsuiBhb5hOPk18KHpLGdd0qcyoq-fIj-qUq8sxo,931
|
|
7
7
|
ansible/_vendor/__init__.py,sha256=wJRKH7kI9OzYVY9hgSchOsTNTmTnugpPLGYj9Y5akX0,2086
|
|
8
8
|
ansible/cli/__init__.py,sha256=PgnfbRlVWR5SpobxKIcKKzCqwdmL0YbBxvx1okt7_XM,26451
|
|
9
9
|
ansible/cli/adhoc.py,sha256=Zcat_7O0xMYd_LNXXOUY0lFjd4a1r6TPcKrbZCgdDpA,7663
|
|
10
|
-
ansible/cli/config.py,sha256=
|
|
10
|
+
ansible/cli/config.py,sha256=7T1sWC4pn0DOBX_2eSzROoWogImXEGDBlUV9kTtPU78,19660
|
|
11
11
|
ansible/cli/console.py,sha256=4c1TUD_NjUPhhQzrPfz7IrSjKy11PJdA1Ny-XpPj0Bc,18680
|
|
12
12
|
ansible/cli/doc.py,sha256=lNkpFmN8GYavfVAJKTcg0uI4j-KpSgG6ZKH6Us8sGfw,61820
|
|
13
|
-
ansible/cli/galaxy.py,sha256=
|
|
14
|
-
ansible/cli/inventory.py,sha256=
|
|
13
|
+
ansible/cli/galaxy.py,sha256=U43Nr_xtRODsD6g1jCsS2dO5eAL-p9J7vaCIDKkjuH0,90721
|
|
14
|
+
ansible/cli/inventory.py,sha256=y-X4Hkuuku-pVgPseLa1VDy7AYj-V9TbHMU11fImPZg,16698
|
|
15
15
|
ansible/cli/playbook.py,sha256=Of69ZAdQw4TYaydZaW5TpYu4VWrU95LwPG_o8qGTaOU,10305
|
|
16
16
|
ansible/cli/pull.py,sha256=7pB4jkVGlz8BLk0W9tjvRj8g8GGU2QG4RXwYW37cooQ,16820
|
|
17
17
|
ansible/cli/vault.py,sha256=VS-qSZMmy3TlKepD_NGEWl0D4P_2YSBbGWKHFgKCryw,22453
|
|
@@ -57,7 +57,7 @@ ansible/executor/process/__init__.py,sha256=1lMXN1i2fFqslda4BmeI5tpYMFP95D5Wpr1A
|
|
|
57
57
|
ansible/executor/process/worker.py,sha256=-83Lcq9fL8pMO-A7GPFXQdKBz5oY9NTDJtvNd9mtejk,8477
|
|
58
58
|
ansible/galaxy/__init__.py,sha256=_ccTedn8dUGGtkmHcQLIkeje_YD0TYSXlvCl1AOY5fE,2533
|
|
59
59
|
ansible/galaxy/api.py,sha256=E8nCKBj5JGNoYLeoPejVPFyYy1mz60Umdbz4T_bBs1k,39592
|
|
60
|
-
ansible/galaxy/role.py,sha256=
|
|
60
|
+
ansible/galaxy/role.py,sha256=I5JXNiIvaQnWDpoazMfKgPIEM0nwIbTg9qrXABAyctw,19377
|
|
61
61
|
ansible/galaxy/token.py,sha256=K0dAwD3Fjkn3Zs2N9sG98UesSWfAukie47QGyYpIf0M,6167
|
|
62
62
|
ansible/galaxy/user_agent.py,sha256=x7cJzzpnTngHcwqSUd2hg0i28Dv0tbAyBdke5CSiNhM,813
|
|
63
63
|
ansible/galaxy/collection/__init__.py,sha256=1Ob-9XrWfIHWWu9U0_KGnfCDtLlt6rQR-LWTZOYOywE,70498
|
|
@@ -143,7 +143,7 @@ ansible/inventory/host.py,sha256=PaP9XSZMyAQ3-qN3KxRK2poIZnPSLvHGwf5DI9Gj3Q8,496
|
|
|
143
143
|
ansible/inventory/manager.py,sha256=zk6besJNTgzg2oalD_vS1RFPRoFYLCjI0T66_i72-BU,25641
|
|
144
144
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
145
|
ansible/module_utils/_text.py,sha256=VCjTJovTxGfLahnzyrvOehpwTXLpRzMUug6wheirt4A,565
|
|
146
|
-
ansible/module_utils/ansible_release.py,sha256=
|
|
146
|
+
ansible/module_utils/ansible_release.py,sha256=NvPRIsuiBhb5hOPk18KHpLGdd0qcyoq-fIj-qUq8sxo,931
|
|
147
147
|
ansible/module_utils/api.py,sha256=BTo7stVOANbtd-ngZslaqx70r9t5gfvo44cKyu5SFjU,5837
|
|
148
148
|
ansible/module_utils/basic.py,sha256=A4Z1S1PaXz11Qk0GHuc99IMI3sAe2zlkHATLIbSkpS0,86537
|
|
149
149
|
ansible/module_utils/connection.py,sha256=XHxMlyAdwLiXDSo8jBMkV61-lz_0FDJUYH1B152UGJU,8430
|
|
@@ -560,13 +560,13 @@ ansible/vars/hostvars.py,sha256=dg3jpVmNwSg8EJ4SIvYGT80uxMgRtrOW6vvtDfrQzDU,5152
|
|
|
560
560
|
ansible/vars/manager.py,sha256=qo5jn1kCnY71eVoyZOJwUn-E0k2eZaJLAiKzbtn3wRA,36285
|
|
561
561
|
ansible/vars/plugins.py,sha256=EoGPunQbSIYm57H4YSimfHeWMEnry5VpMWkRgYf60KQ,3518
|
|
562
562
|
ansible/vars/reserved.py,sha256=nkbIBnGaQvuEsPNpgDtsVZEygY8SUXUE_iVjx-2vYm0,2661
|
|
563
|
-
ansible_core-2.13.
|
|
563
|
+
ansible_core-2.13.12rc1.data/scripts/ansible-test,sha256=CYIYL99IxWdVTtDIj3avilIJXhGAmtjuKPPWNuLWuc8,1690
|
|
564
564
|
ansible_test/__init__.py,sha256=6e721yAyyyocRKzbCKtQXloAfFP7Aqv0L3zG70uh-4A,190
|
|
565
565
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
566
566
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
567
567
|
ansible_test/_data/completion/docker.txt,sha256=Ip2A8wGArT6JLRDbT8n7TZarbjXFeHa-DXSu9rfIVUQ,957
|
|
568
568
|
ansible_test/_data/completion/network.txt,sha256=_-mi013-JeufshKMUmykkOmZPw1cVbakIMaAuweHet8,198
|
|
569
|
-
ansible_test/_data/completion/remote.txt,sha256=
|
|
569
|
+
ansible_test/_data/completion/remote.txt,sha256=Z5BN3V9yfQfvo8u4EPIC-tl2eaGvqlBy2NQ0WE8dwlU,1044
|
|
570
570
|
ansible_test/_data/completion/windows.txt,sha256=k02uwXJ2i7cVHZnXS4HRFlvK5QU5BzAV291Cw53FlXA,226
|
|
571
571
|
ansible_test/_data/playbooks/posix_coverage_setup.yml,sha256=PgQNVzVTsNmfnu0sT2SAYiWtkMSOppfmh0oVmAsb7TQ,594
|
|
572
572
|
ansible_test/_data/playbooks/posix_coverage_teardown.yml,sha256=xHci5QllwJymFtig-hsOXm-Wdrxz063JH14aIyRXhyc,212
|
|
@@ -585,32 +585,32 @@ ansible_test/_data/pytest/config/legacy.ini,sha256=WBpVsIeHL2szv5oFznM2WXYizBgYh
|
|
|
585
585
|
ansible_test/_data/requirements/ansible.txt,sha256=W3VtZRSKy5s-giH4I4nM08DEk8Ga9-fTE-BfBqBurdc,838
|
|
586
586
|
ansible_test/_data/requirements/constraints.txt,sha256=Fi7CMiF4UBF4SfEHcJPLIifzxe3YQ6p28IlP4GxjW_A,1524
|
|
587
587
|
ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
|
|
588
|
-
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=
|
|
588
|
+
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=LI266WfoDc8FVYM8LrXBMK0ZTHhbC3RM14acPZEEKJc,260
|
|
589
589
|
ansible_test/_data/requirements/sanity.changelog.in,sha256=twsyh_z9UXsisBCtOzFvxhW6IGKYgkHpIQ9yZhwMKWw,102
|
|
590
|
-
ansible_test/_data/requirements/sanity.changelog.txt,sha256=
|
|
590
|
+
ansible_test/_data/requirements/sanity.changelog.txt,sha256=9ImvmyMtKpTJXfHhcIvMXwfF36gWb85q6kEh_d-_yLc,309
|
|
591
591
|
ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
|
|
592
592
|
ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
|
|
593
|
-
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=
|
|
594
|
-
ansible_test/_data/requirements/sanity.import.txt,sha256=
|
|
593
|
+
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=0fKQ-NFSRzglwbjtl__WDSWNI29NfA_hBDXRvWkwulY,231
|
|
594
|
+
ansible_test/_data/requirements/sanity.import.txt,sha256=PKv3cAOg1sHScFqM8Oo0n5ILbi0l3VMfbVnv1K5-Ayo,185
|
|
595
595
|
ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
|
|
596
|
-
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=
|
|
596
|
+
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=o2JsPjvtX8qcSqT4JUuj5SKaXA9FugFFM9DS4U5o_UY,211
|
|
597
597
|
ansible_test/_data/requirements/sanity.mypy.in,sha256=_ii6nUScCoWPIjNhOXZKuoUyLzDNEmQbcLO_BbAzCWg,341
|
|
598
598
|
ansible_test/_data/requirements/sanity.mypy.txt,sha256=G1csR8Lw50rH41CJqwVZN5bEAeFWPhUPVSrlwaZWPiQ,494
|
|
599
599
|
ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
|
|
600
600
|
ansible_test/_data/requirements/sanity.pep8.txt,sha256=-CyacuuM_-S7Hqq9ucxr4YXoRL2tO6zkt0qaTg6TPvA,112
|
|
601
601
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=M42hqwUqDlfPSgMmV3UGe-0FjWRFplFuZMcuisHklGw,1505
|
|
602
602
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=uUd7FUGTyu1-jnyIIbZK5i6xZ1XcbjsRiz5HwzNRFjM,86
|
|
603
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
|
603
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=3vkc13fUi__SKuWgKPcrq80pP6VJiK9jPaMh2OFi32s,294
|
|
604
604
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
|
605
|
-
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=
|
|
605
|
+
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=yY5nk8mqFUuA7bApLyAwISD3lgbpfSblxC-36KdFRF8,224
|
|
606
606
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=5gvF_IneKa_2LmPlSfFLOu_OhI_t3l8ny31d1avuIWg,88
|
|
607
|
-
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=
|
|
607
|
+
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=ie8koGivzHZFnvMGQKVxdRLpPHNyu9IrPq5SwBWxr6I,256
|
|
608
608
|
ansible_test/_data/requirements/sanity.yamllint.in,sha256=ivPsPeZUDHOuLbd603ZxKClOQ1bATyMYNx3GfHQmt4g,9
|
|
609
|
-
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=
|
|
609
|
+
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=iRbcXHSsscuu-zhmGPduiny7bZoacfCnlm6vBdjbL-M,222
|
|
610
610
|
ansible_test/_data/requirements/units.txt,sha256=ah91xwwRFeY_fpi0WdRGw9GqEiAjm9BbVbnwTrdzn2g,125
|
|
611
611
|
ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
|
|
612
612
|
ansible_test/_internal/__init__.py,sha256=zUrpgZUNaRktHTHoGdmaiMX-MkXiyAapZbBAbPUInk0,2800
|
|
613
|
-
ansible_test/_internal/ansible_util.py,sha256=
|
|
613
|
+
ansible_test/_internal/ansible_util.py,sha256=gxT1RGA9C1O3Sn6USyRfxskHIgklrHzCJsTxSgZbuSE,12623
|
|
614
614
|
ansible_test/_internal/become.py,sha256=Bakg53-EcFdpGDHAxXuNPAH80Oj6RRFoe9VoHp49hRI,3257
|
|
615
615
|
ansible_test/_internal/bootstrap.py,sha256=RSh4bnn7lMPjgahD9vJacuv1mxDCSVltGloneDoqTLQ,2542
|
|
616
616
|
ansible_test/_internal/cache.py,sha256=zbFztnXN5RshrYZJZ0BlXayH06l194DIFjWfQw0gvws,1051
|
|
@@ -618,13 +618,13 @@ ansible_test/_internal/cgroup.py,sha256=CORPMcQY8bUxARH2raa6_PAl588XBxb6u1tIIglw
|
|
|
618
618
|
ansible_test/_internal/completion.py,sha256=cF7s7dVHbZTntWhXcQyobRh2DF6eZWG4bd2hCv38FHo,11058
|
|
619
619
|
ansible_test/_internal/config.py,sha256=69BQzblr96aLnyQTkkYC2vDEVOpvrdpAVP81yWqlIsc,13188
|
|
620
620
|
ansible_test/_internal/connections.py,sha256=OKZhOv9ZfIoP4Z8j9B88ymYX_XLbwtcehzP9NJM-Egg,8506
|
|
621
|
-
ansible_test/_internal/constants.py,sha256=
|
|
621
|
+
ansible_test/_internal/constants.py,sha256=XuC6ApKnKIsmdX_v06_TNmp512PyZ93CYfaVh0Gjjlk,2106
|
|
622
622
|
ansible_test/_internal/containers.py,sha256=ch0i2AEWgum0JGYf_sm4pNmuHPSvCxif4ea2oJ9FUk4,36885
|
|
623
623
|
ansible_test/_internal/content_config.py,sha256=2XG93e2gjfr4WbzW4hNEPIyhgIJJAZyPj15lVELeQEg,5808
|
|
624
624
|
ansible_test/_internal/core_ci.py,sha256=pe2yg_N9UpH0iI4ERMttvv8yJeknoqPKvAwaQPqJ_rA,17988
|
|
625
625
|
ansible_test/_internal/coverage_util.py,sha256=ZZ1Jf5eiBXregpiFxdw76OrDBS5WrCjGDKrzWwZkTUE,5722
|
|
626
626
|
ansible_test/_internal/data.py,sha256=qQfQpLOom3XqqQDTBgR_6WOICrhKf-eoMpiWVEfPcJc,11327
|
|
627
|
-
ansible_test/_internal/delegation.py,sha256=
|
|
627
|
+
ansible_test/_internal/delegation.py,sha256=NwdSSoD-DDer4OiFhb0wW9WLhNxH1sALnMSDe1QXtBA,13402
|
|
628
628
|
ansible_test/_internal/diff.py,sha256=X3SBMNM-ZUg7xeLPh24PMgsdeClR_YsPA_VmDkO4nmw,7559
|
|
629
629
|
ansible_test/_internal/docker_util.py,sha256=A44Th9xoX-VdDQUw8Il8_1Gid12BXH5pLh657Sy5WMU,38220
|
|
630
630
|
ansible_test/_internal/encoding.py,sha256=p24Fps7ONeY2u12c5fRFZxmIbf6mMBMs5aeIvu7GoY4,1425
|
|
@@ -641,23 +641,23 @@ ansible_test/_internal/metadata.py,sha256=-SpWvw2jUWD82Jzi0FYX_k1eAZsqJvGsokFuFE
|
|
|
641
641
|
ansible_test/_internal/payload.py,sha256=bH_FdHA5NaazwJMvnrwj2LsKS9Bg-2sigXN7RKxQ5-k,8026
|
|
642
642
|
ansible_test/_internal/provisioning.py,sha256=Xh42PD8o9iWmQSJBWMhZek0qM61yV0Su0SB6DJTgiiA,7436
|
|
643
643
|
ansible_test/_internal/pypi_proxy.py,sha256=vA-kd_36mTPzL8NjYxLs1avK1rUb1eG-vuHV9gnhH-4,6127
|
|
644
|
-
ansible_test/_internal/python_requirements.py,sha256=
|
|
644
|
+
ansible_test/_internal/python_requirements.py,sha256=dVPkx2WOF_zCjyPeTlcy5nD7JZ893ah8iRkf7vBM3Zc,20933
|
|
645
645
|
ansible_test/_internal/ssh.py,sha256=ijD3qbAZF-D8v6vxNXtcQVmTqyl88Gd2x3oBdcG9aDE,11044
|
|
646
646
|
ansible_test/_internal/target.py,sha256=lyR1s5VbfJgE6w1DbPDjHRv7vlRreUij6AVps6uRW-g,26383
|
|
647
647
|
ansible_test/_internal/test.py,sha256=3kkBQfvHomyfUVtfIk5-XLMUUY3gWxRByuJ5PmxRVj8,14915
|
|
648
648
|
ansible_test/_internal/thread.py,sha256=FpCUOwwovAYQBu8C1PLDzmuY6w_S2_2SyaUsAZ3kT0E,2644
|
|
649
649
|
ansible_test/_internal/timeout.py,sha256=HKspOSYc5tTDKPgC1E7PLM8hddVbWERYse3duzr6-Rw,4058
|
|
650
|
-
ansible_test/_internal/util.py,sha256=
|
|
650
|
+
ansible_test/_internal/util.py,sha256=HdcbqXzkryUIaOvkA94rWJ9kgqlkInrLE-CZ3uLFupg,38036
|
|
651
651
|
ansible_test/_internal/util_common.py,sha256=-MBoq6FOx_aSsEzWCklrije5WzBtuq0mF_rOnTZxtFw,16778
|
|
652
652
|
ansible_test/_internal/venv.py,sha256=evMOUysolt6gnP122XskVSbabCmb_g8NG73sjbD-TmQ,9541
|
|
653
653
|
ansible_test/_internal/ci/__init__.py,sha256=73sy4a02R0O8R2UvxP2ctM_01zBt6oJLiIWR01Q7G9g,7855
|
|
654
654
|
ansible_test/_internal/ci/azp.py,sha256=VsI6T5MMIbtZcMjwpyi2vhONC2ZrGTYwpV8fxp1zdOo,10252
|
|
655
655
|
ansible_test/_internal/ci/local.py,sha256=jJ6XohwE6pTxl788YpTcUvStjiEd6bn_wM4m1TVOpBI,6876
|
|
656
|
-
ansible_test/_internal/classification/__init__.py,sha256=
|
|
656
|
+
ansible_test/_internal/classification/__init__.py,sha256=X6N_c_02rhkPtWCz_UQTKMSAlv5om_YfkDmEi7l5P30,34728
|
|
657
657
|
ansible_test/_internal/classification/common.py,sha256=cUV_Gkold2dByDkgk-hmXasHyMCERM40oEYky0fqNQw,904
|
|
658
658
|
ansible_test/_internal/classification/csharp.py,sha256=sxRrELVVSziaWFLZm0qLh7i_WBM1kBUBrSczIvj0bZc,3328
|
|
659
659
|
ansible_test/_internal/classification/powershell.py,sha256=jGfDoL3s8ebLrHH53xYNQy8F0c3QxyfVx6h79gaadOQ,3138
|
|
660
|
-
ansible_test/_internal/classification/python.py,sha256=
|
|
660
|
+
ansible_test/_internal/classification/python.py,sha256=GCyXiWsBaK8EmKj9kGKOv1Ulx974FZGnt60_YAE1E0U,13706
|
|
661
661
|
ansible_test/_internal/cli/__init__.py,sha256=vTrZPj5Gl6jcm8iYffl3GuLHryGdNxSaRcyUtWwzIWs,1437
|
|
662
662
|
ansible_test/_internal/cli/actions.py,sha256=ZZ7ByygWojxorxbDaqhC6ugz1oHXHYQBqG8_ZzZmMX0,3476
|
|
663
663
|
ansible_test/_internal/cli/compat.py,sha256=-eFrTathrVroml68ggy6IsdFqg1vx-xBSeUar8-5VFg,23257
|
|
@@ -736,18 +736,19 @@ ansible_test/_internal/commands/integration/cloud/openshift.py,sha256=3EMo0wWaTi
|
|
|
736
736
|
ansible_test/_internal/commands/integration/cloud/scaleway.py,sha256=kG0YAJo-dFDXITVTpNQNt4108uwE8MKP-fOKbEcpmA8,1568
|
|
737
737
|
ansible_test/_internal/commands/integration/cloud/vcenter.py,sha256=9t6VOY6XUUPGS9PMk1yxdnoNxuL3X7ZS6frq2SvLciA,4845
|
|
738
738
|
ansible_test/_internal/commands/integration/cloud/vultr.py,sha256=NLGCMmoRhn9trGJwQHVPi9M4R72yqbtaIcUI2OOA0z4,1520
|
|
739
|
-
ansible_test/_internal/commands/sanity/__init__.py,sha256=
|
|
739
|
+
ansible_test/_internal/commands/sanity/__init__.py,sha256=yyEO3zl8_0Kky07RE7Pqmyx8C_HUoAlR5ju4MZHZTOE,50795
|
|
740
740
|
ansible_test/_internal/commands/sanity/ansible_doc.py,sha256=iD3Lc_8dqihO6s05qeCxgI-LAyzFBx75CbTvxVKZEgw,4144
|
|
741
|
+
ansible_test/_internal/commands/sanity/bin_symlinks.py,sha256=noCXMQ7FtZmn6yJ-UmGUO2NRjMY0xsfP_Yy4igj3PZk,3136
|
|
741
742
|
ansible_test/_internal/commands/sanity/compile.py,sha256=d2r60Jpmek4WFwYMaeCFu8ZxNoL5DqU1HXtBtSQdT8Y,2581
|
|
742
743
|
ansible_test/_internal/commands/sanity/ignores.py,sha256=HSEckhcy8o9oQ85Y0VDgn19JYIl1igEv6dYrWY_mQi4,2851
|
|
743
744
|
ansible_test/_internal/commands/sanity/import.py,sha256=--B4cPaLi3ho4ha7LW-V2vkUKqh69jFE-1uan_SwF3Y,7611
|
|
745
|
+
ansible_test/_internal/commands/sanity/integration_aliases.py,sha256=9ksdNPI1fBmoELrQC6_FFv11zott6GQZZ9AqosFSeJc,14916
|
|
744
746
|
ansible_test/_internal/commands/sanity/mypy.py,sha256=5hQnYeEa51HkUyCf6bIyOJB8me3KDUTGBV1bCP8s3TM,10584
|
|
745
747
|
ansible_test/_internal/commands/sanity/pep8.py,sha256=h9b6WbYLrZQQM9GF-uatIxZLgy_EKI30IqFniGJodBc,3147
|
|
746
748
|
ansible_test/_internal/commands/sanity/pslint.py,sha256=NMtbTb_IHPKPzPyuJNlzNRteWOpIWXNLThmm1uX-agk,3248
|
|
747
749
|
ansible_test/_internal/commands/sanity/pylint.py,sha256=20BhU0Iny2LqcKT4Ic1DXxWErhf3R6JwVXFlJRiT9u4,11048
|
|
748
|
-
ansible_test/_internal/commands/sanity/sanity_docs.py,sha256=pNVbjqHY_DWSpX8orYzwbaS7CmxPgtXHkOo-pFHghK8,1638
|
|
749
750
|
ansible_test/_internal/commands/sanity/shellcheck.py,sha256=JnREbagmRTHeKQK1m6vA-qGlNF8ZEPMcljoKLeu4l-A,3134
|
|
750
|
-
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=
|
|
751
|
+
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=0jvEnEUKOrVldCqHitbmLKc8xomf_vIdI0KZYDTpvLs,7985
|
|
751
752
|
ansible_test/_internal/commands/sanity/yamllint.py,sha256=Wd21f_yej8j2jI5FC-O0a_sMU65JxzPq65MEm5UJPY4,3484
|
|
752
753
|
ansible_test/_internal/commands/shell/__init__.py,sha256=JiUsg9Ut-ZhNFyWAsVUXqtnrk4DIZALwAc33zeyEOQ8,4397
|
|
753
754
|
ansible_test/_internal/commands/units/__init__.py,sha256=c2xRRHOhLxu3F1IvcUUKLTsL-j2Rq3DCsOa7h-4wlK8,12727
|
|
@@ -758,14 +759,14 @@ ansible_test/_internal/dev/__init__.py,sha256=wUzKrVA5k8r6W3k9kaGg-c8k84avPlmC49
|
|
|
758
759
|
ansible_test/_internal/dev/container_probe.py,sha256=HiYph5E_WsQb8MBktwEvxPePBHu9KryhyRUeTVp3afo,8123
|
|
759
760
|
ansible_test/_internal/provider/__init__.py,sha256=Q36_cXMAwgn_0HFHcsMvXEMb-94ZoSbL6KyOQ3puq0U,2390
|
|
760
761
|
ansible_test/_internal/provider/layout/__init__.py,sha256=lf249X6dDk4Hxjc0JfN4N06AINANAr1m7Q6fsAsoKKo,8225
|
|
761
|
-
ansible_test/_internal/provider/layout/ansible.py,sha256=
|
|
762
|
+
ansible_test/_internal/provider/layout/ansible.py,sha256=k7ldTosxB5-lFfvzrMNalj4uWK8mm7LBDCKt7L9pd-I,2305
|
|
762
763
|
ansible_test/_internal/provider/layout/collection.py,sha256=I8PCZ3k5k4BwqFv6BO-EDGnguyHcQw9NM8V1IrvhACA,6554
|
|
763
764
|
ansible_test/_internal/provider/layout/unsupported.py,sha256=e2WPy8Zyt7JX3mOr7w0MdA5MdRs_sKz_uc7W6gIpX0U,1561
|
|
764
765
|
ansible_test/_internal/provider/source/__init__.py,sha256=ylAKG4N0Iwljtzk3OVEB27BnqGePr0vmDLU1xHk87Yk,389
|
|
765
766
|
ansible_test/_internal/provider/source/git.py,sha256=rjCSmTu6Xm5gFPNRszyqshEqAinOaHmKvxUUKXvhEu4,2592
|
|
766
767
|
ansible_test/_internal/provider/source/installed.py,sha256=Cm0v6dxA7u6yNvyCugr2zEWa1KANzXBkHc3TcnDp4jo,1205
|
|
767
768
|
ansible_test/_internal/provider/source/unsupported.py,sha256=tDjEeBz8eGqKHhk171VRViLHsJkcE-4StGu34IDZcnQ,645
|
|
768
|
-
ansible_test/_internal/provider/source/unversioned.py,sha256=
|
|
769
|
+
ansible_test/_internal/provider/source/unversioned.py,sha256=bTfUgyUrnW5HRtor9N3LXqCMKSepoMKf9VKk103JrLE,2280
|
|
769
770
|
ansible_test/_util/__init__.py,sha256=6e721yAyyyocRKzbCKtQXloAfFP7Aqv0L3zG70uh-4A,190
|
|
770
771
|
ansible_test/_util/controller/sanity/code-smell/action-plugin-docs.json,sha256=UFrvd1xSg8KNvaqWyY0FcTTuzg7BdsaRF3Uumhi7Zik,249
|
|
771
772
|
ansible_test/_util/controller/sanity/code-smell/action-plugin-docs.py,sha256=9tFehFF-r_PUo65lvZe1LvBmEiSFrzoPFW0-WKTZptg,1737
|
|
@@ -853,12 +854,12 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=AN
|
|
|
853
854
|
ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=Nr52YbVP7BwI4u6mZZptZIYGAfmqzzytdbC98lTr5Ks,1599
|
|
854
855
|
ansible_test/_util/target/sanity/compile/compile.py,sha256=-Dajd4QCX1GnCAHLVn7jimqIJZZXd4folaS67YmQ7sg,1572
|
|
855
856
|
ansible_test/_util/target/sanity/import/importer.py,sha256=qo6SewCfhzWBkMUlgUH7UnjVXKkcDpz1cxIq1c_APHQ,25584
|
|
856
|
-
ansible_test/_util/target/setup/ConfigureRemotingForAnsible.ps1,sha256=
|
|
857
|
-
ansible_test/_util/target/setup/bootstrap.sh,sha256=
|
|
857
|
+
ansible_test/_util/target/setup/ConfigureRemotingForAnsible.ps1,sha256=pW9YaaSNvhc_0ijjMfSMdoQkrmZNJ-Rb4xCL8m8t7yU,16693
|
|
858
|
+
ansible_test/_util/target/setup/bootstrap.sh,sha256=a3LV6JL_jsHawHm8ciMQoTkUyXnPjhInMtYWtr6RgPY,13556
|
|
858
859
|
ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
|
|
859
860
|
ansible_test/_util/target/setup/probe_cgroups.py,sha256=ygqTkZc_YDH6EkZqp95rk_xkqsYcy_9IslPHKZO2A-8,712
|
|
860
861
|
ansible_test/_util/target/setup/quiet_pip.py,sha256=k-EK8Ny7AcekGTejRFq0oV4YTVHaYUVpjfRLbKVApnc,3267
|
|
861
|
-
ansible_test/_util/target/setup/requirements.py,sha256=
|
|
862
|
+
ansible_test/_util/target/setup/requirements.py,sha256=ICQPYF0F_oBv0Nb50D8Wm99r3DLjcUkakJxftuweg_8,13232
|
|
862
863
|
ansible_test/_util/target/tools/virtualenvcheck.py,sha256=U8MRKjU9A6G3KOfLzDIvKODmjyl1KXbDjxbx2ZZOta8,518
|
|
863
864
|
ansible_test/_util/target/tools/yamlcheck.py,sha256=ypZ8yEX0x6CnCkwRAPHkMRtzdz32WrQx1_UbCqaxRCc,364
|
|
864
865
|
ansible_test/config/cloud-config-aws.ini.template,sha256=L2DJ2U-jR1huZ0bkVbAzk2Aw2TquekJBjA5j3RXKoTk,1125
|
|
@@ -875,9 +876,9 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=yO2Xz76Ay3kbG54jX7y8-
|
|
|
875
876
|
ansible_test/config/config.yml,sha256=wb3knoBmZewG3GWOMnRHoVPQWW4vPixKLPMNS6vJmTc,2620
|
|
876
877
|
ansible_test/config/inventory.networking.template,sha256=vQ7x1-u5Q4Y5CqZU-7eMSEJOSCzAbPOL1rmK_AQOQuY,1262
|
|
877
878
|
ansible_test/config/inventory.winrm.template,sha256=_M2i1B9RYfwSjwvgf3M-H_5Br5FO_kney_kMRPmoggk,1025
|
|
878
|
-
ansible_core-2.13.
|
|
879
|
-
ansible_core-2.13.
|
|
880
|
-
ansible_core-2.13.
|
|
881
|
-
ansible_core-2.13.
|
|
882
|
-
ansible_core-2.13.
|
|
883
|
-
ansible_core-2.13.
|
|
879
|
+
ansible_core-2.13.12rc1.dist-info/COPYING,sha256=CuBIWlvTemPmNgNZZBfk6w5lMzT6bH-TLKOg6F1K8ic,35148
|
|
880
|
+
ansible_core-2.13.12rc1.dist-info/METADATA,sha256=SemD47Mbo2m58wlQXfbPOoUYxZv0tRHmLAeFfxIB44s,6906
|
|
881
|
+
ansible_core-2.13.12rc1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
882
|
+
ansible_core-2.13.12rc1.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
|
|
883
|
+
ansible_core-2.13.12rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
|
884
|
+
ansible_core-2.13.12rc1.dist-info/RECORD,,
|
|
@@ -2,8 +2,8 @@ alpine/3.16 python=3.10 become=doas_sudo provider=aws arch=x86_64
|
|
|
2
2
|
alpine become=doas_sudo provider=aws arch=x86_64
|
|
3
3
|
fedora/36 python=3.10 become=sudo provider=aws arch=x86_64
|
|
4
4
|
fedora become=sudo provider=aws arch=x86_64
|
|
5
|
-
freebsd/12.
|
|
6
|
-
freebsd/13.
|
|
5
|
+
freebsd/12.4 python=3.9 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64
|
|
6
|
+
freebsd/13.1 python=3.8,3.7,3.9,3.10 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64
|
|
7
7
|
freebsd python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64
|
|
8
8
|
macos/12.0 python=3.10 python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64
|
|
9
9
|
macos python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64
|