ansible-core 2.14.8__py3-none-any.whl → 2.14.9__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/module_utils/ansible_release.py +1 -1
- ansible/modules/getent.py +1 -1
- ansible/modules/git.py +1 -1
- ansible/modules/setup.py +1 -1
- ansible/modules/stat.py +3 -3
- ansible/modules/validate_argument_spec.py +1 -1
- ansible/plugins/action/__init__.py +1 -1
- ansible/plugins/filter/split.yml +1 -1
- ansible/release.py +1 -1
- ansible_core-2.14.9.dist-info/METADATA +128 -0
- {ansible_core-2.14.8.dist-info → ansible_core-2.14.9.dist-info}/RECORD +39 -38
- {ansible_core-2.14.8.dist-info → ansible_core-2.14.9.dist-info}/WHEEL +1 -1
- 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 +1 -1
- 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 +430 -0
- 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/_util/target/setup/ConfigureRemotingForAnsible.ps1 +1 -1
- ansible_test/_util/target/setup/requirements.py +63 -0
- ansible_core-2.14.8.dist-info/METADATA +0 -154
- ansible_test/_internal/commands/sanity/sanity_docs.py +0 -61
- {ansible_core-2.14.8.data → ansible_core-2.14.9.data}/scripts/ansible-test +0 -0
- {ansible_core-2.14.8.dist-info → ansible_core-2.14.9.dist-info}/COPYING +0 -0
- {ansible_core-2.14.8.dist-info → ansible_core-2.14.9.dist-info}/entry_points.txt +0 -0
- {ansible_core-2.14.8.dist-info → ansible_core-2.14.9.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
|
|
@@ -92,6 +93,7 @@ def with_collection_artifacts_manager(wrapped_method):
|
|
|
92
93
|
the related temporary directory auto-cleanup around the target
|
|
93
94
|
method invocation.
|
|
94
95
|
"""
|
|
96
|
+
@functools.wraps(wrapped_method)
|
|
95
97
|
def method_wrapper(*args, **kwargs):
|
|
96
98
|
if 'artifacts_manager' in kwargs:
|
|
97
99
|
return wrapped_method(*args, **kwargs)
|
|
@@ -286,6 +288,7 @@ class GalaxyCLI(CLI):
|
|
|
286
288
|
|
|
287
289
|
# Add sub parser for the Galaxy collection actions
|
|
288
290
|
collection = type_parser.add_parser('collection', help='Manage an Ansible Galaxy collection.')
|
|
291
|
+
collection.set_defaults(func=self.execute_collection) # to satisfy doc build
|
|
289
292
|
collection_parser = collection.add_subparsers(metavar='COLLECTION_ACTION', dest='action')
|
|
290
293
|
collection_parser.required = True
|
|
291
294
|
self.add_download_options(collection_parser, parents=[common, cache_options])
|
|
@@ -298,6 +301,7 @@ class GalaxyCLI(CLI):
|
|
|
298
301
|
|
|
299
302
|
# Add sub parser for the Galaxy role actions
|
|
300
303
|
role = type_parser.add_parser('role', help='Manage an Ansible Galaxy role.')
|
|
304
|
+
role.set_defaults(func=self.execute_role) # to satisfy doc build
|
|
301
305
|
role_parser = role.add_subparsers(metavar='ROLE_ACTION', dest='action')
|
|
302
306
|
role_parser.required = True
|
|
303
307
|
self.add_init_options(role_parser, parents=[common, force, offline])
|
|
@@ -1017,6 +1021,7 @@ class GalaxyCLI(CLI):
|
|
|
1017
1021
|
|
|
1018
1022
|
@with_collection_artifacts_manager
|
|
1019
1023
|
def execute_download(self, artifacts_manager=None):
|
|
1024
|
+
"""Download collections and their dependencies as a tarball for an offline install."""
|
|
1020
1025
|
collections = context.CLIARGS['args']
|
|
1021
1026
|
no_deps = context.CLIARGS['no_deps']
|
|
1022
1027
|
download_path = context.CLIARGS['download_path']
|
|
@@ -1243,6 +1248,7 @@ class GalaxyCLI(CLI):
|
|
|
1243
1248
|
|
|
1244
1249
|
@with_collection_artifacts_manager
|
|
1245
1250
|
def execute_verify(self, artifacts_manager=None):
|
|
1251
|
+
"""Compare checksums with the collection(s) found on the server and the installed copy. This does not verify dependencies."""
|
|
1246
1252
|
|
|
1247
1253
|
collections = context.CLIARGS['args']
|
|
1248
1254
|
search_paths = context.CLIARGS['collections_path']
|
|
@@ -1280,8 +1286,6 @@ class GalaxyCLI(CLI):
|
|
|
1280
1286
|
You can pass in a list (roles or collections) or use the file
|
|
1281
1287
|
option listed below (these are mutually exclusive). If you pass in a list, it
|
|
1282
1288
|
can be a name (which will be downloaded via the galaxy API and github), or it can be a local tar archive file.
|
|
1283
|
-
|
|
1284
|
-
:param artifacts_manager: Artifacts manager.
|
|
1285
1289
|
"""
|
|
1286
1290
|
install_items = context.CLIARGS['args']
|
|
1287
1291
|
requirements_file = context.CLIARGS['requirements']
|
ansible/cli/inventory.py
CHANGED
|
@@ -64,7 +64,7 @@ class InventoryCLI(CLI):
|
|
|
64
64
|
def init_parser(self):
|
|
65
65
|
super(InventoryCLI, self).init_parser(
|
|
66
66
|
usage='usage: %prog [options] [host|group]',
|
|
67
|
-
|
|
67
|
+
desc='Show Ansible inventory information, by default it uses the inventory script JSON format')
|
|
68
68
|
|
|
69
69
|
opt_help.add_inventory_options(self.parser)
|
|
70
70
|
opt_help.add_vault_options(self.parser)
|
ansible/modules/getent.py
CHANGED
|
@@ -12,7 +12,7 @@ DOCUMENTATION = r'''
|
|
|
12
12
|
module: getent
|
|
13
13
|
short_description: A wrapper to the unix getent utility
|
|
14
14
|
description:
|
|
15
|
-
- Runs getent against one of
|
|
15
|
+
- Runs getent against one of its various databases and returns information into
|
|
16
16
|
the host's facts, in a getent_<database> prefixed variable.
|
|
17
17
|
version_added: "1.8"
|
|
18
18
|
options:
|
ansible/modules/git.py
CHANGED
|
@@ -45,7 +45,7 @@ options:
|
|
|
45
45
|
description:
|
|
46
46
|
- Will ensure or not that "-o StrictHostKeyChecking=no" is present as an ssh option.
|
|
47
47
|
- Be aware that this disables a protection against MITM attacks.
|
|
48
|
-
- Those using OpenSSH >= 7.5 might want to set I(
|
|
48
|
+
- Those using OpenSSH >= 7.5 might want to set I(ssh_opts) to 'StrictHostKeyChecking=accept-new'
|
|
49
49
|
instead, it does not remove the MITM issue but it does restrict it to the first attempt.
|
|
50
50
|
type: bool
|
|
51
51
|
default: 'no'
|
ansible/modules/setup.py
CHANGED
|
@@ -114,7 +114,7 @@ author:
|
|
|
114
114
|
'''
|
|
115
115
|
|
|
116
116
|
EXAMPLES = r"""
|
|
117
|
-
# Display facts from all hosts and store them indexed by
|
|
117
|
+
# Display facts from all hosts and store them indexed by `hostname` at `/tmp/facts`.
|
|
118
118
|
# ansible all -m ansible.builtin.setup --tree /tmp/facts
|
|
119
119
|
|
|
120
120
|
# Display only facts regarding memory found by ansible on all hosts and output them.
|
ansible/modules/stat.py
CHANGED
|
@@ -47,7 +47,7 @@ options:
|
|
|
47
47
|
description:
|
|
48
48
|
- Use file magic and return data about the nature of the file. this uses
|
|
49
49
|
the 'file' utility found on most Linux/Unix systems.
|
|
50
|
-
- This will add both C(
|
|
50
|
+
- This will add both C(mimetype) and C(charset) fields to the return, if possible.
|
|
51
51
|
- In Ansible 2.3 this option changed from I(mime) to I(get_mime) and the default changed to C(true).
|
|
52
52
|
type: bool
|
|
53
53
|
default: yes
|
|
@@ -333,14 +333,14 @@ stat:
|
|
|
333
333
|
mimetype:
|
|
334
334
|
description: file magic data or mime-type
|
|
335
335
|
returned: success, path exists and user can read stats and
|
|
336
|
-
installed python supports it and the I(
|
|
336
|
+
installed python supports it and the I(get_mime) option was true, will
|
|
337
337
|
return C(unknown) on error.
|
|
338
338
|
type: str
|
|
339
339
|
sample: application/pdf; charset=binary
|
|
340
340
|
charset:
|
|
341
341
|
description: file character set or encoding
|
|
342
342
|
returned: success, path exists and user can read stats and
|
|
343
|
-
installed python supports it and the I(
|
|
343
|
+
installed python supports it and the I(get_mime) option was true, will
|
|
344
344
|
return C(unknown) on error.
|
|
345
345
|
type: str
|
|
346
346
|
sample: us-ascii
|
|
@@ -77,7 +77,7 @@ EXAMPLES = r'''
|
|
|
77
77
|
- ansible.builtin.validate_argument_spec:
|
|
78
78
|
argument_spec: "{{lookup('ansible.builtin.file', 'nakedoptions.yml'}}"
|
|
79
79
|
provided_arguments:
|
|
80
|
-
but: "that i can define on the include itself, like in it's
|
|
80
|
+
but: "that i can define on the include itself, like in it's `vars:` keyword"
|
|
81
81
|
|
|
82
82
|
- name: the include itself
|
|
83
83
|
vars:
|
|
@@ -723,7 +723,7 @@ class ActionBase(ABC):
|
|
|
723
723
|
return remote_paths
|
|
724
724
|
|
|
725
725
|
# we'll need this down here
|
|
726
|
-
become_link = get_versioned_doclink('
|
|
726
|
+
become_link = get_versioned_doclink('playbook_guide/playbooks_privilege_escalation.html#risks-of-becoming-an-unprivileged-user')
|
|
727
727
|
|
|
728
728
|
# Step 3f: Common group
|
|
729
729
|
# Otherwise, we're a normal user. We failed to chown the paths to the
|
ansible/plugins/filter/split.yml
CHANGED
ansible/release.py
CHANGED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: ansible-core
|
|
3
|
+
Version: 2.14.9
|
|
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.9
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
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.9
|
|
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=IvyRvY64pT0on94qCLibxgDJ0-7_2CRoaZ5kfGOl54Q,1395
|
|
|
3
3
|
ansible/constants.py,sha256=JLIDnuSz3_PbtXWsL4vnvVBbxlh3lSrJREd7T73atEI,8293
|
|
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=9gexUiLbBhar-q0V-1Urm9i8rwSwdkQ24jP95-kielM,919
|
|
7
7
|
ansible/_vendor/__init__.py,sha256=wJRKH7kI9OzYVY9hgSchOsTNTmTnugpPLGYj9Y5akX0,2086
|
|
8
8
|
ansible/cli/__init__.py,sha256=yDt8_ny7HauC9Aj-MMHQr3Y6gDQADfdEU0O1BfzkSwA,27957
|
|
9
9
|
ansible/cli/adhoc.py,sha256=pGW6eysaireovp4sVsUuntg-l1o7DSujuhxVhVC2zsM,8230
|
|
10
|
-
ansible/cli/config.py,sha256=
|
|
10
|
+
ansible/cli/config.py,sha256=bgNMEq3_vr7UtEtAzb7PC3Bwo4iz0LX7Uo-TxLJooTQ,22152
|
|
11
11
|
ansible/cli/console.py,sha256=rc-6s-Exf9b8lead40RyfugZdU1-cMoN-kA1iI8Uhs8,21941
|
|
12
12
|
ansible/cli/doc.py,sha256=PerGaymHYb5TtKKbcuXs93VXMSYVapDEapQGZ4qYoxY,60432
|
|
13
|
-
ansible/cli/galaxy.py,sha256=
|
|
14
|
-
ansible/cli/inventory.py,sha256=
|
|
13
|
+
ansible/cli/galaxy.py,sha256=hW9zdJBT_myTaU_qrPLWp9MStvkqbKn9Fr7tLawVsHk,92842
|
|
14
|
+
ansible/cli/inventory.py,sha256=CQ-_HPMfzAJDqUUeasNdTjgHo2-P7CHJAj32rdO0eQA,16415
|
|
15
15
|
ansible/cli/playbook.py,sha256=EqpEZ8Rb1q-0HBcnCb7QxP7OzkoJXw9P33uiQBtUmMM,10495
|
|
16
16
|
ansible/cli/pull.py,sha256=TI3xfqcO-f8I60gRvVdiAEELghSq5Mlb8YPX6SdiitM,17010
|
|
17
17
|
ansible/cli/vault.py,sha256=1x9Mn6KEdtGhyT9f8Z5ESWp52ft51uJjceinPcEObq4,22400
|
|
@@ -139,7 +139,7 @@ ansible/inventory/host.py,sha256=wXJp6kpSaZtDr4JNsgdAuhi5MzQ9LTQzaAH10zoVbIA,505
|
|
|
139
139
|
ansible/inventory/manager.py,sha256=tGwhBR6poLuG_i4jZ5RGOG-rH4gu4DBfT0-4iLLZZMs,29490
|
|
140
140
|
ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
141
|
ansible/module_utils/_text.py,sha256=VCjTJovTxGfLahnzyrvOehpwTXLpRzMUug6wheirt4A,565
|
|
142
|
-
ansible/module_utils/ansible_release.py,sha256=
|
|
142
|
+
ansible/module_utils/ansible_release.py,sha256=9gexUiLbBhar-q0V-1Urm9i8rwSwdkQ24jP95-kielM,919
|
|
143
143
|
ansible/module_utils/api.py,sha256=BTo7stVOANbtd-ngZslaqx70r9t5gfvo44cKyu5SFjU,5837
|
|
144
144
|
ansible/module_utils/basic.py,sha256=dGTJD-84x2a0hqKgoqB6PNhjmOEqYuuf2EgWyX5zVC8,86621
|
|
145
145
|
ansible/module_utils/connection.py,sha256=XHxMlyAdwLiXDSo8jBMkV61-lz_0FDJUYH1B152UGJU,8430
|
|
@@ -298,8 +298,8 @@ ansible/modules/file.py,sha256=16a6R2WvXQWrZiW4P2pfwae4ljN1KGGRNcb4gK9MwcI,40890
|
|
|
298
298
|
ansible/modules/find.py,sha256=CnlnCmEtwh_roDJcSTxJZGZKrroH6i1f7_qfoPREIYA,19182
|
|
299
299
|
ansible/modules/gather_facts.py,sha256=9KeprPoUly-WNfDTngSee48PBlqKo4wuk-yZMcfmCN4,2560
|
|
300
300
|
ansible/modules/get_url.py,sha256=NMFyOxS_a0H-VoByOFsZZStQbeDZRfxWUqk1_V37GPw,26845
|
|
301
|
-
ansible/modules/getent.py,sha256=
|
|
302
|
-
ansible/modules/git.py,sha256=
|
|
301
|
+
ansible/modules/getent.py,sha256=UQThy8KrysVM9vEPgWHlyzuEZioZqVlzV7UtdjQz6Zk,5695
|
|
302
|
+
ansible/modules/git.py,sha256=Da1dyZazvethGEfDO61mly1gJhwlak678B5d-V5hZ2I,56545
|
|
303
303
|
ansible/modules/group.py,sha256=Q3Psaq4aS8tbdL2XvrFivaFp5jVmaLYg3GZzNwPL0Cg,20040
|
|
304
304
|
ansible/modules/group_by.py,sha256=moe6dJFQ9c9Q39kQkAgq3fpq61kzKpWOM33tljrFqM0,2467
|
|
305
305
|
ansible/modules/hostname.py,sha256=BW47SL8_oTH9eZz8dX6-jA7sBMQr_n0D8LHCHSQD94I,28795
|
|
@@ -327,10 +327,10 @@ ansible/modules/service.py,sha256=_RnA2dODO2HFTvI5JIoiCVo82t7TWATxWwKExmwVS98,65
|
|
|
327
327
|
ansible/modules/service_facts.py,sha256=sIh37AvjLTEmnE0wwB7Neg96uoUoKW7bqjZeyYkdtiQ,17134
|
|
328
328
|
ansible/modules/set_fact.py,sha256=TuyneWlKJClX5yGnvA0Xe5rIPIBTRlC5ZM7FXMYqlyw,5755
|
|
329
329
|
ansible/modules/set_stats.py,sha256=EviuH3UwFGg_aTsWWMnvdscfOR4B8Y2ycMCUO1CpUZQ,2667
|
|
330
|
-
ansible/modules/setup.py,sha256=
|
|
330
|
+
ansible/modules/setup.py,sha256=xbxkK1i2n7hfhS2zXd62zP5KdgK0hcq0QmTefubaBkU,11054
|
|
331
331
|
ansible/modules/shell.py,sha256=g8VrtgEpLv2RPbQnyhAV7HA7QTsQ752o6WcpZvBktDM,6730
|
|
332
332
|
ansible/modules/slurp.py,sha256=Ch7HntSFKmr3W1qcGfqUhZboUiLBzuDzXrzWDRt_ZhA,3269
|
|
333
|
-
ansible/modules/stat.py,sha256=
|
|
333
|
+
ansible/modules/stat.py,sha256=vzLGjjgfA3vbv8zlQDJ8Q1txn2Xc46lp5o11Px8yJFk,20087
|
|
334
334
|
ansible/modules/subversion.py,sha256=JsZd6nIVcKfoEwOKnn_kospKcTm9IuKMb3AxxL8PoKM,13534
|
|
335
335
|
ansible/modules/systemd.py,sha256=j_gT36PwqSEs8tA2E91SqIz0bEkP3CM6UTRsnKGzBfw,23371
|
|
336
336
|
ansible/modules/systemd_service.py,sha256=j_gT36PwqSEs8tA2E91SqIz0bEkP3CM6UTRsnKGzBfw,23371
|
|
@@ -340,7 +340,7 @@ ansible/modules/template.py,sha256=k0h7j9n9v2efC0f1boCsTq2NwgTLkFuQxgxmUgq4nZE,3
|
|
|
340
340
|
ansible/modules/unarchive.py,sha256=77kv3buZezvXMb-8KmFvV-rtiyVdcvynaOw84bzk2Js,43815
|
|
341
341
|
ansible/modules/uri.py,sha256=2jWiuBln8378jQuL1CLH-BCNg1ZaO27rMw5LW1TLVQg,28451
|
|
342
342
|
ansible/modules/user.py,sha256=qOnO_lxilSM--HAuO7UtC5g8PKaMS8hiD7QNpnTbyrY,116313
|
|
343
|
-
ansible/modules/validate_argument_spec.py,sha256=
|
|
343
|
+
ansible/modules/validate_argument_spec.py,sha256=O0IJWWX7L-i87OrFRjNzG0Tpz-0rHKBKi_zFPd9EOv4,3066
|
|
344
344
|
ansible/modules/wait_for.py,sha256=8xLXpbwlXiL4Wwan0cQgpHoQaB6xaqn9Oc5TM4W9Xis,26530
|
|
345
345
|
ansible/modules/wait_for_connection.py,sha256=YKLM15BMeJxi7ev0h5bRxo5DVWK9yKV_6xaP2LyUfvY,3461
|
|
346
346
|
ansible/modules/yum.py,sha256=4_IREXJj-lMVvNwF27fTBvv7pZtt3ddylruUwAsJxls,73777
|
|
@@ -388,7 +388,7 @@ ansible/playbook/role/requirement.py,sha256=T_PljD0hgVstV325iALyCUKkAZxzLLlcQjpp
|
|
|
388
388
|
ansible/plugins/__init__.py,sha256=i984DJbHLaZ1rirIIGSk3mS-dRAYeCWMmS6jPWkK2bw,5117
|
|
389
389
|
ansible/plugins/list.py,sha256=RBasSwr51nQLK9I3NDmLGmUo1ntzGiprMpdc2Mny64c,8635
|
|
390
390
|
ansible/plugins/loader.py,sha256=OfKF01mtOgr787iiHvd-l7FvyN6eJpGIe5L5gyNGE-U,71936
|
|
391
|
-
ansible/plugins/action/__init__.py,sha256=
|
|
391
|
+
ansible/plugins/action/__init__.py,sha256=AQjl9-O6r37HDzYdlDVFlxO4hCi8hfMTfIGGwxkQRcQ,68857
|
|
392
392
|
ansible/plugins/action/add_host.py,sha256=5r_HKyiIyiKAj3PZMshuepYliTppjBp6-o8b9_aFTJA,3667
|
|
393
393
|
ansible/plugins/action/assemble.py,sha256=YlgV3zbB_gOtVFycTB9eC1u16essMRqYMDhb6ur4UVg,6573
|
|
394
394
|
ansible/plugins/action/assert.py,sha256=l3BIU0ZfG7z832NpfvfvP8RfJwkBe-T5_PRsTAbyFZo,3891
|
|
@@ -505,7 +505,7 @@ ansible/plugins/filter/relpath.yml,sha256=X95UZfvgjdRn6ia-pfts9ksBhF3LvASNyg7BTq
|
|
|
505
505
|
ansible/plugins/filter/root.yml,sha256=gHnrBCmNl-wYTF3N1U2lUTh4O-fRUj-EK4WT4RbEQOA,618
|
|
506
506
|
ansible/plugins/filter/sha1.yml,sha256=Un-4PtcF2eCoc22ezn5QcsIotbpGTnRxAcZRzgv1BwM,729
|
|
507
507
|
ansible/plugins/filter/shuffle.yml,sha256=rcdsrsZhe5tMqtF00V8khecdVKmzHnHwkUqIdISrpQQ,685
|
|
508
|
-
ansible/plugins/filter/split.yml,sha256=
|
|
508
|
+
ansible/plugins/filter/split.yml,sha256=hwdDMh5Eyq9auX2OD_mMZ6wgVyuJbvnZZoXsMlPQeog,833
|
|
509
509
|
ansible/plugins/filter/splitext.yml,sha256=bveXiKxDAMwlvGfSDSYoocfv3yn3zJzPa_HyZhVTfQI,746
|
|
510
510
|
ansible/plugins/filter/strftime.yml,sha256=Q2sm6XQqSAl4L9ui3GvwQ6n98DWTDt4GJLn8IY7Bu_0,1357
|
|
511
511
|
ansible/plugins/filter/subelements.yml,sha256=oXsQgDnoFVznLp5C6IyyOvCVtj49eQhpPTzNz3vLcbo,1438
|
|
@@ -674,7 +674,7 @@ ansible/vars/hostvars.py,sha256=dg3jpVmNwSg8EJ4SIvYGT80uxMgRtrOW6vvtDfrQzDU,5152
|
|
|
674
674
|
ansible/vars/manager.py,sha256=9d-9uD9x1X35QgLOZRyJtAxg3b1j4sp8Ivc5C78viOk,36178
|
|
675
675
|
ansible/vars/plugins.py,sha256=B7L3fXoSOoBZSXqJ2ulk0adx1g5SpAb8BxyLGPNA7d4,4695
|
|
676
676
|
ansible/vars/reserved.py,sha256=FBD7n2dnA0CW4I0J1LtWwk2hQqvGW0KTRPcxaRtMKWo,2615
|
|
677
|
-
ansible_core-2.14.
|
|
677
|
+
ansible_core-2.14.9.data/scripts/ansible-test,sha256=CYIYL99IxWdVTtDIj3avilIJXhGAmtjuKPPWNuLWuc8,1690
|
|
678
678
|
ansible_test/__init__.py,sha256=6e721yAyyyocRKzbCKtQXloAfFP7Aqv0L3zG70uh-4A,190
|
|
679
679
|
ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
680
680
|
ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -700,32 +700,32 @@ ansible_test/_data/requirements/ansible-test.txt,sha256=Kq-3pmddlqE9-gxK-N1Syatn
|
|
|
700
700
|
ansible_test/_data/requirements/ansible.txt,sha256=W3VtZRSKy5s-giH4I4nM08DEk8Ga9-fTE-BfBqBurdc,838
|
|
701
701
|
ansible_test/_data/requirements/constraints.txt,sha256=WQLt0xOabeYk3f-l37XWfmcims_tG2Jkzy9YKrjb_G0,1503
|
|
702
702
|
ansible_test/_data/requirements/sanity.ansible-doc.in,sha256=9KRJJ-n37IMHpLJLv_VmFOhYF8Y3Vnk6eRyhwVKzC8A,108
|
|
703
|
-
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=
|
|
703
|
+
ansible_test/_data/requirements/sanity.ansible-doc.txt,sha256=gFZ3crPfHMcllIbokBTuO5gWcH7pclaBgpUo3qLhEpY,260
|
|
704
704
|
ansible_test/_data/requirements/sanity.changelog.in,sha256=DKg2HLo0xme3EyC1evSpcSfAhD-NFkGWwhcaJs6N6sw,159
|
|
705
|
-
ansible_test/_data/requirements/sanity.changelog.txt,sha256=
|
|
705
|
+
ansible_test/_data/requirements/sanity.changelog.txt,sha256=HqS5_szPmpl6emZmWmJBx3Sz0b7pQ5aGvNGbrLDpZgI,310
|
|
706
706
|
ansible_test/_data/requirements/sanity.import.in,sha256=dL2716R_VoxiYHZxXNa_offbX8YNF0TI5K_cLTCIte8,37
|
|
707
707
|
ansible_test/_data/requirements/sanity.import.plugin.in,sha256=7D0HGyPvCG8D1BMuBYP2IMJ__OgCP8So2hzEVTVxvDg,70
|
|
708
|
-
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=
|
|
709
|
-
ansible_test/_data/requirements/sanity.import.txt,sha256=
|
|
708
|
+
ansible_test/_data/requirements/sanity.import.plugin.txt,sha256=nfmHDzrlHVY4Oz5cAmNXulXFaFd4NFopixS5KIK8UkI,231
|
|
709
|
+
ansible_test/_data/requirements/sanity.import.txt,sha256=PKv3cAOg1sHScFqM8Oo0n5ILbi0l3VMfbVnv1K5-Ayo,185
|
|
710
710
|
ansible_test/_data/requirements/sanity.integration-aliases.in,sha256=NMkWvYDYr5-OnrCqjdCkfHbP9dFqncYTIUrKwA628dE,7
|
|
711
|
-
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=
|
|
711
|
+
ansible_test/_data/requirements/sanity.integration-aliases.txt,sha256=o2JsPjvtX8qcSqT4JUuj5SKaXA9FugFFM9DS4U5o_UY,211
|
|
712
712
|
ansible_test/_data/requirements/sanity.mypy.in,sha256=h6QRK4kntWxSaLvBpf3T492zv4b6u45tmJHYrggoXiA,421
|
|
713
713
|
ansible_test/_data/requirements/sanity.mypy.txt,sha256=72Q8OgsSrqdcPJlVYdUYykHYceY3rw3W9fiPNqoQ5Es,490
|
|
714
714
|
ansible_test/_data/requirements/sanity.pep8.in,sha256=rHbIEiXmvsJ016mFcLVcF_d-dKgP3VdfOB6CWbivZug,12
|
|
715
715
|
ansible_test/_data/requirements/sanity.pep8.txt,sha256=aWemSnz6llp9owUMk_I1EJTYuSYS5HED4MrgIEzR3Sg,112
|
|
716
716
|
ansible_test/_data/requirements/sanity.pslint.ps1,sha256=M42hqwUqDlfPSgMmV3UGe-0FjWRFplFuZMcuisHklGw,1505
|
|
717
717
|
ansible_test/_data/requirements/sanity.pylint.in,sha256=J1aS7EPBg8V1-B5XSwXFa7fSZ3cL579AAM8q6S58AIc,87
|
|
718
|
-
ansible_test/_data/requirements/sanity.pylint.txt,sha256=
|
|
718
|
+
ansible_test/_data/requirements/sanity.pylint.txt,sha256=LpF_E0v0l1aA5OrkkJdJfcPr7f78ekEUL64ldtClw5Y,370
|
|
719
719
|
ansible_test/_data/requirements/sanity.runtime-metadata.in,sha256=QzOCB5QxVHYuXHXQvkUsa5MwRQzPhI-ZDD-M2htj36s,18
|
|
720
|
-
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=
|
|
720
|
+
ansible_test/_data/requirements/sanity.runtime-metadata.txt,sha256=JHfVwHa6zHC5rXieX-gQEBVl-5G1Pwpx2d7ubCaLSN4,224
|
|
721
721
|
ansible_test/_data/requirements/sanity.validate-modules.in,sha256=5gvF_IneKa_2LmPlSfFLOu_OhI_t3l8ny31d1avuIWg,88
|
|
722
|
-
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=
|
|
722
|
+
ansible_test/_data/requirements/sanity.validate-modules.txt,sha256=EbuL0hCxE9YS3e7ss6f5E2B4vJU4e_L8Gem-e-O_Wd4,256
|
|
723
723
|
ansible_test/_data/requirements/sanity.yamllint.in,sha256=ivPsPeZUDHOuLbd603ZxKClOQ1bATyMYNx3GfHQmt4g,9
|
|
724
|
-
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=
|
|
724
|
+
ansible_test/_data/requirements/sanity.yamllint.txt,sha256=dDer7Wd5rlNFaSct7NiYpZCwW8zG_bzkPuSB5A_48oE,223
|
|
725
725
|
ansible_test/_data/requirements/units.txt,sha256=ah91xwwRFeY_fpi0WdRGw9GqEiAjm9BbVbnwTrdzn2g,125
|
|
726
726
|
ansible_test/_data/requirements/windows-integration.txt,sha256=jx9vvE8tX1-sColj5E2WuDs1sZvhuqUJnqBjheSbP4U,65
|
|
727
727
|
ansible_test/_internal/__init__.py,sha256=Ov_4Oh-B08xt4PU_7M_fMkmG9X9gnseBo78x0hmXZ98,3156
|
|
728
|
-
ansible_test/_internal/ansible_util.py,sha256=
|
|
728
|
+
ansible_test/_internal/ansible_util.py,sha256=6qb5I6GIjxoITHXwUm0QX9X6Y8ZSaEe_NyHFRUMmI9Q,10274
|
|
729
729
|
ansible_test/_internal/become.py,sha256=zvOlaWKA4L6Cp6Xe795FsTw9xlWUy5Q5TicOwHXjzaI,3071
|
|
730
730
|
ansible_test/_internal/bootstrap.py,sha256=UbkB1ZJ-2bs7qtwRRBi5516IsBq0vZl-pUoyrgzdROQ,2471
|
|
731
731
|
ansible_test/_internal/cache.py,sha256=3W_1s5xdXdm-6Mhgrk1bNlr_Nde-B4FDN00LN0hVbfk,1050
|
|
@@ -757,7 +757,7 @@ ansible_test/_internal/metadata.py,sha256=c9ThXPUlgeKYhaTUmfCSS4INRNQ1JhN2KEOVaX
|
|
|
757
757
|
ansible_test/_internal/payload.py,sha256=1Pw05OEHvP3LMQnoLXch8631c94YMklWlpDn0CvQECw,8012
|
|
758
758
|
ansible_test/_internal/provisioning.py,sha256=9Zl3xQqljx0MGDTp55Q4LZPWQ7Afj5K87cGsXzPGS5Y,7320
|
|
759
759
|
ansible_test/_internal/pypi_proxy.py,sha256=kVvqvLIxN-VolD1jG_EILwYy1bWoy766ZKVKEFlQgmA,6040
|
|
760
|
-
ansible_test/_internal/python_requirements.py,sha256=
|
|
760
|
+
ansible_test/_internal/python_requirements.py,sha256=T5FIlohIFeHHcFAJcsL8bUSvgQ-xg_JUyEZJaZL2PFg,20401
|
|
761
761
|
ansible_test/_internal/ssh.py,sha256=2bS-DkcMJcBr3NExF2Y_htJVye_glKXir1NmLF05VR8,10662
|
|
762
762
|
ansible_test/_internal/target.py,sha256=Whtb_n0jn4zbiMmX7je5jewgzsRczfXRm_ndYtjTSTQ,25320
|
|
763
763
|
ansible_test/_internal/test.py,sha256=znQmGjKACqDU8T0EAPqcv2qyy0J7M2w4OmyYhwHLqT0,14515
|
|
@@ -769,11 +769,11 @@ ansible_test/_internal/venv.py,sha256=DPHAt4tuoIdP7BOXa75-i4T7Paild8eGDsV2UUKOZ7
|
|
|
769
769
|
ansible_test/_internal/ci/__init__.py,sha256=QOaC_8_wUzqFEbsFCXYAnElWoUo6gB40CXvP9RJ-Iyo,7738
|
|
770
770
|
ansible_test/_internal/ci/azp.py,sha256=5ev2kSfqTHWVvluPbu7vV52gaXuBYt3mRGistKv4Kcs,10097
|
|
771
771
|
ansible_test/_internal/ci/local.py,sha256=E4nnerMKdBoVEbsT8IBkl0nSdXyxO2gT8WAaxyzA1EY,6739
|
|
772
|
-
ansible_test/_internal/classification/__init__.py,sha256=
|
|
772
|
+
ansible_test/_internal/classification/__init__.py,sha256=PPvWxiRoYAThqw4dPUfib-rtfisElZViuMXXR0Sqmx4,34325
|
|
773
773
|
ansible_test/_internal/classification/common.py,sha256=jd5VLRegcOX-GNTZqN_7PBzwKF6akFQYsPEltfynGtU,894
|
|
774
774
|
ansible_test/_internal/classification/csharp.py,sha256=3QpVZjamTTG7h86oeVm7d4UMbyojPbBALHVqCpxS1ic,3241
|
|
775
775
|
ansible_test/_internal/classification/powershell.py,sha256=i8t8LxG_-wDPpz1VlnvqAPpRGgVJsuA_xglMtCpibCc,3053
|
|
776
|
-
ansible_test/_internal/classification/python.py,sha256=
|
|
776
|
+
ansible_test/_internal/classification/python.py,sha256=pltDeMQEDbtjyG15vAizCvygU8MHrPcqWSobU6z_8YY,13532
|
|
777
777
|
ansible_test/_internal/cli/__init__.py,sha256=kTB7TfN12k_VJGMXEuOSlu3huruIUTb8UIFkaFyMr_I,1427
|
|
778
778
|
ansible_test/_internal/cli/actions.py,sha256=D3z2FdpJC1dpQR9Vu1662wW28_iqPpWeAC3rizzjVAA,3366
|
|
779
779
|
ansible_test/_internal/cli/compat.py,sha256=IuzgPeiqCd-OTlIEuNiphq3M96d9KNBYWbg42akaVNY,23007
|
|
@@ -852,16 +852,17 @@ ansible_test/_internal/commands/integration/cloud/openshift.py,sha256=GRexSBUT99
|
|
|
852
852
|
ansible_test/_internal/commands/integration/cloud/scaleway.py,sha256=ZoScZMW5xP-0rQ68OE3-axjCD_p638AqU0B9tlmPTeU,1537
|
|
853
853
|
ansible_test/_internal/commands/integration/cloud/vcenter.py,sha256=n4xTIk35GTbM1XDnxtBccAQIU2tpqiRhhWuHXW-8RMk,4785
|
|
854
854
|
ansible_test/_internal/commands/integration/cloud/vultr.py,sha256=TE43tKiAerXbKD9FXBrBVzeWNUB87qtR5twg_zDicHM,1488
|
|
855
|
-
ansible_test/_internal/commands/sanity/__init__.py,sha256=
|
|
855
|
+
ansible_test/_internal/commands/sanity/__init__.py,sha256=D9xQCctCtPETZ2UH7ORUjeTcQkjzUXeRnq0paoa3Oho,50043
|
|
856
856
|
ansible_test/_internal/commands/sanity/ansible_doc.py,sha256=nWFDAwPgNHp7KR5aNK1EVntxSnCEcFYo293ncYecoSY,4078
|
|
857
|
+
ansible_test/_internal/commands/sanity/bin_symlinks.py,sha256=IAHze0HglLHnsUW4HowA8tmDzWGn4E8N5mnAi7hXPMI,3045
|
|
857
858
|
ansible_test/_internal/commands/sanity/compile.py,sha256=ZQwHB85a7N6utr038kLbDZwFlXGEJMkSI63YyoGcd-I,2539
|
|
858
859
|
ansible_test/_internal/commands/sanity/ignores.py,sha256=9wpzc8eRKS4nAVWOeSgXju5j1tDXNFPMSlskrR-Pohs,2789
|
|
859
860
|
ansible_test/_internal/commands/sanity/import.py,sha256=C7GCC2AFmjZ96rllGCcZIxiy_pDYSG9vGJFWcsny484,7555
|
|
861
|
+
ansible_test/_internal/commands/sanity/integration_aliases.py,sha256=sGN5ATjW3_Xn0m_ncqxxFz8tLQ0jqpceHDaeIZzshMM,16221
|
|
860
862
|
ansible_test/_internal/commands/sanity/mypy.py,sha256=hpzMa0JbcfAOk9Q2_xiSp01yyiK_e2QXgOvRv9tCG6Y,10113
|
|
861
863
|
ansible_test/_internal/commands/sanity/pep8.py,sha256=SSulTIljaSu_exl93ZklKyuhbKS-zf18SKu23k3VJhA,3125
|
|
862
864
|
ansible_test/_internal/commands/sanity/pslint.py,sha256=lVgL6RrDolRgIOJ2NRr04k2KVwMddZz1M7I-6h57vII,3210
|
|
863
865
|
ansible_test/_internal/commands/sanity/pylint.py,sha256=8XxdckD4AVTkP8GamX6XaeGcMvYvf5yTgtUIN5d8aFk,10922
|
|
864
|
-
ansible_test/_internal/commands/sanity/sanity_docs.py,sha256=0rbqhxKQXYuVzJ6x4V_ItH9tA15mT9gSYVgxNU3EhnQ,1605
|
|
865
866
|
ansible_test/_internal/commands/sanity/shellcheck.py,sha256=CZHNN_2iNVE3iqf5SIDSH9b2hwF6aXtJ0H6MPCEJX4s,3070
|
|
866
867
|
ansible_test/_internal/commands/sanity/validate_modules.py,sha256=fLHdjSD0FhiSJXWFehhNdU0tLDXWxF2IvWG28vjUMBk,7686
|
|
867
868
|
ansible_test/_internal/commands/sanity/yamllint.py,sha256=rF_L-QVWLfQ5HiOf_Q-6AMdk7orOJN_Bu8XyMfobRQ8,3423
|
|
@@ -874,14 +875,14 @@ ansible_test/_internal/dev/__init__.py,sha256=wUzKrVA5k8r6W3k9kaGg-c8k84avPlmC49
|
|
|
874
875
|
ansible_test/_internal/dev/container_probe.py,sha256=HQwqiKwn4LEZhzchsGu1PGgGDv5Jb0P2iXwSDp5tIBI,7819
|
|
875
876
|
ansible_test/_internal/provider/__init__.py,sha256=GYJAiW8sj-6IrKxiQQxCFVZ8Wu4R9okpR4ej4IM0T_s,2246
|
|
876
877
|
ansible_test/_internal/provider/layout/__init__.py,sha256=yV3tTECAb-5iOquwKSdUl_AquOhUq1pNWnq898Y-qWc,7601
|
|
877
|
-
ansible_test/_internal/provider/layout/ansible.py,sha256=
|
|
878
|
+
ansible_test/_internal/provider/layout/ansible.py,sha256=OFxJcF1bVAcuL3hEx1ZFGBgfc6Cv_d2VvApUoxs7E-g,1979
|
|
878
879
|
ansible_test/_internal/provider/layout/collection.py,sha256=0fTr6jLOXp4Nt-S6X3EiwHZwuaMJqCgX_mkF-uR2dHI,6130
|
|
879
880
|
ansible_test/_internal/provider/layout/unsupported.py,sha256=VDD7tNkEQA0VBDHHtUCLXeufocPymxxCYTQKCO5Bkow,1240
|
|
880
881
|
ansible_test/_internal/provider/source/__init__.py,sha256=H7blyEyZ_qEeo9z4QvuHBlM4H2i33EK9EL6eiX6mIHQ,359
|
|
881
882
|
ansible_test/_internal/provider/source/git.py,sha256=yt9hlX0zdvVlKJJAGJz9eoDBwTr5tsjIoklu_dPud3Y,2540
|
|
882
883
|
ansible_test/_internal/provider/source/installed.py,sha256=HWHqsPsN1rvLzZUkoo3xiVRG0Yuu1SqOzBgWkyUibR4,1165
|
|
883
884
|
ansible_test/_internal/provider/source/unsupported.py,sha256=VuKKHXpK4oWWMSjcuIAKO2qobgERQuTyoHhzqIzrCDo,604
|
|
884
|
-
ansible_test/_internal/provider/source/unversioned.py,sha256=
|
|
885
|
+
ansible_test/_internal/provider/source/unversioned.py,sha256=GLydvU4R-8TKSxl-xOk6jG3YPJqeM30NdloRpBxal9Q,2240
|
|
885
886
|
ansible_test/_util/__init__.py,sha256=6e721yAyyyocRKzbCKtQXloAfFP7Aqv0L3zG70uh-4A,190
|
|
886
887
|
ansible_test/_util/controller/sanity/code-smell/action-plugin-docs.json,sha256=UFrvd1xSg8KNvaqWyY0FcTTuzg7BdsaRF3Uumhi7Zik,249
|
|
887
888
|
ansible_test/_util/controller/sanity/code-smell/action-plugin-docs.py,sha256=9tFehFF-r_PUo65lvZe1LvBmEiSFrzoPFW0-WKTZptg,1737
|
|
@@ -969,12 +970,12 @@ ansible_test/_util/target/pytest/plugins/ansible_pytest_collections.py,sha256=AN
|
|
|
969
970
|
ansible_test/_util/target/pytest/plugins/ansible_pytest_coverage.py,sha256=Nr52YbVP7BwI4u6mZZptZIYGAfmqzzytdbC98lTr5Ks,1599
|
|
970
971
|
ansible_test/_util/target/sanity/compile/compile.py,sha256=X1WHH2iLT4K8kyYJKlr-6AL6EAzKisL_hYrjvGrHCZ8,1637
|
|
971
972
|
ansible_test/_util/target/sanity/import/importer.py,sha256=FNNKz2lSpxTNdfjLdvadzP3KryI4ut7gT03050gzDN8,25932
|
|
972
|
-
ansible_test/_util/target/setup/ConfigureRemotingForAnsible.ps1,sha256=
|
|
973
|
+
ansible_test/_util/target/setup/ConfigureRemotingForAnsible.ps1,sha256=pW9YaaSNvhc_0ijjMfSMdoQkrmZNJ-Rb4xCL8m8t7yU,16693
|
|
973
974
|
ansible_test/_util/target/setup/bootstrap.sh,sha256=wQv4J12j3_xoTHNB3oIWouK5bB_Y5RjXJUgDXS_3E-k,12951
|
|
974
975
|
ansible_test/_util/target/setup/check_systemd_cgroup_v1.sh,sha256=Aq0T62x_KLtkGaWzYqWjvhchTqYFflrTbQET3h6xrT0,395
|
|
975
976
|
ansible_test/_util/target/setup/probe_cgroups.py,sha256=ygqTkZc_YDH6EkZqp95rk_xkqsYcy_9IslPHKZO2A-8,712
|
|
976
977
|
ansible_test/_util/target/setup/quiet_pip.py,sha256=k-EK8Ny7AcekGTejRFq0oV4YTVHaYUVpjfRLbKVApnc,3267
|
|
977
|
-
ansible_test/_util/target/setup/requirements.py,sha256=
|
|
978
|
+
ansible_test/_util/target/setup/requirements.py,sha256=DK1jHcj_ghnPhG0A7SvSTIoiwnxGDuRnxVvlAD3zeq4,13253
|
|
978
979
|
ansible_test/_util/target/tools/virtualenvcheck.py,sha256=U8MRKjU9A6G3KOfLzDIvKODmjyl1KXbDjxbx2ZZOta8,518
|
|
979
980
|
ansible_test/_util/target/tools/yamlcheck.py,sha256=ypZ8yEX0x6CnCkwRAPHkMRtzdz32WrQx1_UbCqaxRCc,364
|
|
980
981
|
ansible_test/config/cloud-config-aws.ini.template,sha256=L2DJ2U-jR1huZ0bkVbAzk2Aw2TquekJBjA5j3RXKoTk,1125
|
|
@@ -991,9 +992,9 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=yO2Xz76Ay3kbG54jX7y8-
|
|
|
991
992
|
ansible_test/config/config.yml,sha256=wb3knoBmZewG3GWOMnRHoVPQWW4vPixKLPMNS6vJmTc,2620
|
|
992
993
|
ansible_test/config/inventory.networking.template,sha256=vQ7x1-u5Q4Y5CqZU-7eMSEJOSCzAbPOL1rmK_AQOQuY,1262
|
|
993
994
|
ansible_test/config/inventory.winrm.template,sha256=_M2i1B9RYfwSjwvgf3M-H_5Br5FO_kney_kMRPmoggk,1025
|
|
994
|
-
ansible_core-2.14.
|
|
995
|
-
ansible_core-2.14.
|
|
996
|
-
ansible_core-2.14.
|
|
997
|
-
ansible_core-2.14.
|
|
998
|
-
ansible_core-2.14.
|
|
999
|
-
ansible_core-2.14.
|
|
995
|
+
ansible_core-2.14.9.dist-info/COPYING,sha256=CuBIWlvTemPmNgNZZBfk6w5lMzT6bH-TLKOg6F1K8ic,35148
|
|
996
|
+
ansible_core-2.14.9.dist-info/METADATA,sha256=UxGfY1Ho8LT_n-DxLZuZ05YhkbyBK8GUvdYaFQM2VKc,6903
|
|
997
|
+
ansible_core-2.14.9.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
|
|
998
|
+
ansible_core-2.14.9.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
|
|
999
|
+
ansible_core-2.14.9.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
|
|
1000
|
+
ansible_core-2.14.9.dist-info/RECORD,,
|