ansible-core 2.17.10rc1__py3-none-any.whl → 2.17.11rc1__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.

@@ -17,6 +17,6 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = '2.17.10rc1'
20
+ __version__ = '2.17.11rc1'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Gallows Pole"
@@ -59,7 +59,7 @@ options:
59
59
  description:
60
60
  - This option dictates whether the role's C(vars) and C(defaults) are exposed to the play.
61
61
  - Variables are exposed to the play at playbook parsing time, and available to earlier roles and tasks as well unlike C(include_role).
62
- - The default depends on the configuration option :ref:`default_private_role_vars`.
62
+ - The default depends on the configuration option R(DEFAULT_PRIVATE_ROLE_VARS, DEFAULT_PRIVATE_ROLE_VARS).
63
63
  type: bool
64
64
  default: yes
65
65
  version_added: '2.17'
@@ -187,17 +187,19 @@ EXAMPLES = r'''
187
187
  host: '{{ (ansible_ssh_host|default(ansible_host))|default(inventory_hostname) }}'
188
188
  search_regex: OpenSSH
189
189
  delay: 10
190
- connection: local
190
+ timeout: 300
191
+ delegate_to: localhost
191
192
 
192
- # Same as above but you normally have ansible_connection set in inventory, which overrides 'connection'
193
+ # Same as above but using config lookup for the target,
194
+ # most plugins use 'remote_addr', but ssh uses 'host'
193
195
  - name: Wait 300 seconds for port 22 to become open and contain "OpenSSH"
194
196
  ansible.builtin.wait_for:
195
197
  port: 22
196
- host: '{{ (ansible_ssh_host|default(ansible_host))|default(inventory_hostname) }}'
198
+ host: "{{ lookup('config', 'host', plugin_name='ssh', plugin_type='connection') }}"
197
199
  search_regex: OpenSSH
198
200
  delay: 10
199
- vars:
200
- ansible_connection: local
201
+ timeout: 300
202
+ delegate_to: localhost
201
203
  '''
202
204
 
203
205
  RETURN = r'''
@@ -95,7 +95,7 @@ class ActionModule(ActionBase):
95
95
  self._display.warning("Detected 'setup' module and a network OS is set, the output when running it will reflect 'localhost'"
96
96
  " and not the target when a netwoking connection plugin is used.")
97
97
 
98
- elif not set(modules).difference(set(C._ACTION_SETUP)):
98
+ elif not set(modules).intersection(set(C._ACTION_SETUP)):
99
99
  # no network OS and setup not in list, add setup by default since 'smart'
100
100
  modules.append('ansible.legacy.setup')
101
101
 
@@ -8,7 +8,7 @@ DOCUMENTATION:
8
8
  options:
9
9
  _input:
10
10
  description: human-readable description of a number of bytes.
11
- type: int
11
+ type: string
12
12
  required: true
13
13
  default_unit:
14
14
  description: Unit to assume when input does not specify it.
ansible/release.py CHANGED
@@ -17,6 +17,6 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = '2.17.10rc1'
20
+ __version__ = '2.17.11rc1'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Gallows Pole"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ansible-core
3
- Version: 2.17.10rc1
3
+ Version: 2.17.11rc1
4
4
  Summary: Radically simple IT automation
5
5
  Home-page: https://ansible.com/
6
6
  Author: Ansible, Inc.
@@ -3,7 +3,7 @@ ansible/__main__.py,sha256=EnLcULXNtSXkuJ8igEHPPLBTZKAwqXv4PvMEhvzp2Oo,1430
3
3
  ansible/constants.py,sha256=vRwEcoynqtuKDPKsxKUY94XzrTSV3J0y1slb907DioU,9140
4
4
  ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
5
5
  ansible/keyword_desc.yml,sha256=vE9joFgSeHR4Djl7Bd-HHVCrGByRCrTUmWYZ8LKPZKk,7412
6
- ansible/release.py,sha256=P0x1ZNRJz6NwT_opleiPgBnh_pnuZpVJXVZ6vQSxGIU,836
6
+ ansible/release.py,sha256=mxVOxQG0mB6YnPbkOx1ihOKA0M7l-HBcdvbJcj27ebk,836
7
7
  ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
8
8
  ansible/cli/__init__.py,sha256=fzgR82NIGBH3GujIMehhAaP4KYszn4uztuCaFYRUpGk,28718
9
9
  ansible/cli/adhoc.py,sha256=quJ9WzRzf3dz_dtDGmahNMffqyNVy1jzQCMo21YL5Qg,8194
@@ -140,7 +140,7 @@ ansible/inventory/host.py,sha256=PDb5OTplhfpUIvdHiP2BckUOB1gUl302N-3sW0_sTyg,503
140
140
  ansible/inventory/manager.py,sha256=45mHgZTAkQ3IjAtrgsNzJXvynC-HIEor-JJE-V3xXN4,29454
141
141
  ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
142
  ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
143
- ansible/module_utils/ansible_release.py,sha256=P0x1ZNRJz6NwT_opleiPgBnh_pnuZpVJXVZ6vQSxGIU,836
143
+ ansible/module_utils/ansible_release.py,sha256=mxVOxQG0mB6YnPbkOx1ihOKA0M7l-HBcdvbJcj27ebk,836
144
144
  ansible/module_utils/api.py,sha256=DWIuLW5gDWuyyDHLLgGnub42Qa8kagDdkf1xDeLAFl4,5784
145
145
  ansible/module_utils/basic.py,sha256=UcDamm_6bkL3HXxKvQcSUlzDOHkIlvd8AYGuqJNmZeI,86113
146
146
  ansible/module_utils/connection.py,sha256=q_BdUaST6E44ltHsWPOFOheXK9vKmzaJvP-eQOrOrmE,8394
@@ -305,7 +305,7 @@ ansible/modules/group.py,sha256=2JhTZsddxmSmKuZQ_tFjc8_CMEEagYf3ajfMQS2NEbs,2093
305
305
  ansible/modules/group_by.py,sha256=BvqMil6pVI-k2uvLujYmO3uJTGFP-7FvVeYdv5i4ZDI,2416
306
306
  ansible/modules/hostname.py,sha256=QR3J6K5fz9eI_M5AfYEGst6sfRdqUngkTqYlTEC42_s,28807
307
307
  ansible/modules/import_playbook.py,sha256=nDlfSR4cupiVdq7EvrACgDDa-s3QEjhwYHLcM5b_jg0,2056
308
- ansible/modules/import_role.py,sha256=YWRE_KTcnlJbi6xatOLoY1ORoSPaf98nRW2jbFHJHLU,3707
308
+ ansible/modules/import_role.py,sha256=oUCoFDI6q6ItBMYmFengw9R5NgjbdT2e04owLn3ytBM,3730
309
309
  ansible/modules/import_tasks.py,sha256=1shFYv_D_AsyIykUPP4UD-A3jSfZ_2OHKVBXbaoDbn8,2137
310
310
  ansible/modules/include_role.py,sha256=pAhL2LM-MgJGtHmjy1Cky-2ZUkF5TpOVHKlfnhPM0BE,4223
311
311
  ansible/modules/include_tasks.py,sha256=lxVLL_SE23TRQpwT1q1QqHf2EIvhzOF0qr4Lzi0qjGY,2659
@@ -342,7 +342,7 @@ ansible/modules/unarchive.py,sha256=hlRAn2Ma36rmeQ4-OldGLPnHu3w8rlxlvLovQ2pYg5c,
342
342
  ansible/modules/uri.py,sha256=WgJA04YvgKTpQsMJFWAg9ITbj8cpIYwZD_tPlD_hcz4,28203
343
343
  ansible/modules/user.py,sha256=WXKZLfqFzs-CRzz3HKU2BSWosU_1rb3gAaMtbrO9P8o,118750
344
344
  ansible/modules/validate_argument_spec.py,sha256=epLh4EUaoDLvhdVszRM68Q2QdicK-3jxhMA530dQaIE,3044
345
- ansible/modules/wait_for.py,sha256=VXFFcYG88EJVXnrJfa0fzh9rD_2luSty__qdzRuTAQE,27322
345
+ ansible/modules/wait_for.py,sha256=rsx_PR73-BRImLNErVUM1o9wRdPlXkGu5y6FhJ8wLcY,27355
346
346
  ansible/modules/wait_for_connection.py,sha256=lHgsuyw3oel1pqXlLCls7KSF1PJaSU0RKGGE6ewbQQY,3326
347
347
  ansible/modules/yum_repository.py,sha256=v9nsLd5NLy33ygJ_6IYzknFDPnZaGvyKemWEL5843qk,24906
348
348
  ansible/parsing/__init__.py,sha256=NMP9ZkK59SNdQktw76aWAXVAm5U2POXLgAK7wH-1h0g,742
@@ -401,7 +401,7 @@ ansible/plugins/action/debug.py,sha256=vPmHIfMAbuqpHb2aq0QS7M_g7Fu5pFTwMoYjCKCAa
401
401
  ansible/plugins/action/dnf.py,sha256=GdqJh2FHyer8SXiwrKW7dyg4cQwlDF8sfvnL7RaLnsw,3588
402
402
  ansible/plugins/action/fail.py,sha256=_1JuS0Z8Y8EB4FKG1u7KdP6xMuLobRHJsmtzmvN2CkU,1457
403
403
  ansible/plugins/action/fetch.py,sha256=cQAmUWEGMDjfVfHGviNtsT4i06rnoubL3EgrOlUZbLw,10188
404
- ansible/plugins/action/gather_facts.py,sha256=yNUrBPdzdJoA6euqy6k-gWpS_6yS0m-iBNq438PsbKk,9186
404
+ ansible/plugins/action/gather_facts.py,sha256=PnoZvkn56RbXk8J6vHL6avgo7PugkFv3u5zrtvjloe0,9188
405
405
  ansible/plugins/action/group_by.py,sha256=97d4TF9o7vS5y0s1HfGgvh70l2gkQ2uUGxy0knlok5Y,1894
406
406
  ansible/plugins/action/include_vars.py,sha256=_xPrP_BeGqbhvpJYQFDUkREL9UzZ6Y4q_AnCshvsn1A,11573
407
407
  ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
@@ -484,7 +484,7 @@ ansible/plugins/filter/from_yaml.yml,sha256=XjZmeNDgx5aUqQZFb0e-RzlQw4n74XUe2ci9
484
484
  ansible/plugins/filter/from_yaml_all.yml,sha256=sCpbY8oVS0Djo1Nlaom3jd82yWPxFvYo79c2AxVEkpk,1282
485
485
  ansible/plugins/filter/hash.yml,sha256=XYE7Um2YAo6AODup2n4ugiXxXk_NH9FLXVSiHCbDevM,861
486
486
  ansible/plugins/filter/human_readable.yml,sha256=yJHoHxcIetCkksD0Pkqsp6TjXN_z5JYfxjvMkEO1SrU,993
487
- ansible/plugins/filter/human_to_bytes.yml,sha256=5vGRn3bGmo-kiiYYpBnGJQD9vGybHgawrCxtYBQ3G8A,1047
487
+ ansible/plugins/filter/human_to_bytes.yml,sha256=AdfuDhQj8VzMR1QLkJZWMKOE7VstE5HvzxG83cZzZhk,1050
488
488
  ansible/plugins/filter/intersect.yml,sha256=9QNicYe8aL3Lb1fwXTRe_qntvzqQ8n1ORZZ7gI-bnR4,1036
489
489
  ansible/plugins/filter/items2dict.yml,sha256=56H1AnvCt6P2F7UByycH6Xr5Ux9qrxskuGMOWXg2HTE,1561
490
490
  ansible/plugins/filter/log.yml,sha256=QRklpKa4SFsiv2BG6tIk1gKMttjordhmsqIp29nuX5M,904
@@ -678,7 +678,7 @@ ansible/vars/hostvars.py,sha256=o11xrzDVYn23renGbb3lx3R-nH9qOjLFju5IYJanDxg,5324
678
678
  ansible/vars/manager.py,sha256=Yuo51lu4UVfzxMS63zYtZMcI8iFYgLXtg0p8fnq3Y7E,38871
679
679
  ansible/vars/plugins.py,sha256=RsRU9fiLcJwPIAyTYnmVZglsiEOMCIgQskflavE-XnE,4546
680
680
  ansible/vars/reserved.py,sha256=Tsc4m2UwVce3dOvSWrjT2wB3lpNJtUyNZn45zNhsW0I,2869
681
- ansible_core-2.17.10rc1.data/scripts/ansible-test,sha256=dyY2HtRZotRQO3b89HGXY_KnJgBvgsm4eLIe4B2LUoA,1637
681
+ ansible_core-2.17.11rc1.data/scripts/ansible-test,sha256=dyY2HtRZotRQO3b89HGXY_KnJgBvgsm4eLIe4B2LUoA,1637
682
682
  ansible_test/__init__.py,sha256=20VPOj11c6Ut1Av9RaurgwJvFhMqkWG3vAvcCbecNKw,66
683
683
  ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
684
684
  ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -979,9 +979,9 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
979
979
  ansible_test/config/config.yml,sha256=wb3knoBmZewG3GWOMnRHoVPQWW4vPixKLPMNS6vJmTc,2620
980
980
  ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
981
981
  ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
982
- ansible_core-2.17.10rc1.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
983
- ansible_core-2.17.10rc1.dist-info/METADATA,sha256=cMOAz2QWo2oJh9u7eMmiMBn4yk7slBAS0nKzDMTHGlY,6969
984
- ansible_core-2.17.10rc1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
985
- ansible_core-2.17.10rc1.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
986
- ansible_core-2.17.10rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
987
- ansible_core-2.17.10rc1.dist-info/RECORD,,
982
+ ansible_core-2.17.11rc1.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
983
+ ansible_core-2.17.11rc1.dist-info/METADATA,sha256=d17_jhXGx-zS5zm6rwYYy7ll2ADN4-IgEA5-IxcJNf0,6969
984
+ ansible_core-2.17.11rc1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
985
+ ansible_core-2.17.11rc1.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
986
+ ansible_core-2.17.11rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
987
+ ansible_core-2.17.11rc1.dist-info/RECORD,,