ansible-core 2.18.4rc1__py3-none-any.whl → 2.18.5rc1__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.
@@ -17,6 +17,6 @@
17
17
 
18
18
  from __future__ import annotations
19
19
 
20
- __version__ = '2.18.4rc1'
20
+ __version__ = '2.18.5rc1'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Fool in the Rain"
ansible/modules/dnf5.py CHANGED
@@ -354,6 +354,8 @@ from ansible.module_utils.common.respawn import has_respawned, probe_interpreter
354
354
  from ansible.module_utils.yumdnf import YumDnf, yumdnf_argument_spec
355
355
 
356
356
  libdnf5 = None
357
+ # Through dnf5-5.2.12 all exceptions raised through swig became RuntimeError
358
+ LIBDNF5_ERROR = RuntimeError
357
359
 
358
360
 
359
361
  def is_installed(base, spec):
@@ -411,7 +413,7 @@ def is_newer_version_installed(base, spec):
411
413
 
412
414
  try:
413
415
  spec_nevra = next(iter(libdnf5.rpm.Nevra.parse(spec)))
414
- except (RuntimeError, StopIteration):
416
+ except (LIBDNF5_ERROR, StopIteration):
415
417
  return False
416
418
 
417
419
  spec_version = spec_nevra.get_version()
@@ -503,12 +505,19 @@ class Dnf5Module(YumDnf):
503
505
  os.environ["LANGUAGE"] = os.environ["LANG"] = locale
504
506
 
505
507
  global libdnf5
508
+ global LIBDNF5_ERROR
506
509
  has_dnf = True
507
510
  try:
508
511
  import libdnf5 # type: ignore[import]
509
512
  except ImportError:
510
513
  has_dnf = False
511
514
 
515
+ try:
516
+ import libdnf5.exception # type: ignore[import-not-found]
517
+ LIBDNF5_ERROR = libdnf5.exception.Error
518
+ except (ImportError, AttributeError):
519
+ pass
520
+
512
521
  if has_dnf:
513
522
  return
514
523
 
@@ -553,7 +562,7 @@ class Dnf5Module(YumDnf):
553
562
 
554
563
  try:
555
564
  base.load_config()
556
- except RuntimeError as e:
565
+ except LIBDNF5_ERROR as e:
557
566
  self.module.fail_json(
558
567
  msg=str(e),
559
568
  conf_file=self.conf_file,
@@ -716,7 +725,7 @@ class Dnf5Module(YumDnf):
716
725
  for spec in self.names:
717
726
  try:
718
727
  goal.add_remove(spec, settings)
719
- except RuntimeError as e:
728
+ except LIBDNF5_ERROR as e:
720
729
  self.module.fail_json(msg=str(e), failures=[], rc=1)
721
730
  if self.autoremove:
722
731
  for pkg in get_unneeded_pkgs(base):
@@ -725,7 +734,7 @@ class Dnf5Module(YumDnf):
725
734
  goal.set_allow_erasing(self.allowerasing)
726
735
  try:
727
736
  transaction = goal.resolve()
728
- except RuntimeError as e:
737
+ except LIBDNF5_ERROR as e:
729
738
  self.module.fail_json(msg=str(e), failures=[], rc=1)
730
739
 
731
740
  if transaction.get_problems():
ansible/modules/find.py CHANGED
@@ -513,7 +513,7 @@ def main():
513
513
  skipped = {}
514
514
 
515
515
  def handle_walk_errors(e):
516
- if e.errno in (errno.EPERM, errno.EACCES):
516
+ if e.errno in (errno.EPERM, errno.EACCES, errno.ENOENT):
517
517
  skipped[e.filename] = to_text(e)
518
518
  return
519
519
  raise e
@@ -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'
ansible/modules/uri.py CHANGED
@@ -448,7 +448,7 @@ import tempfile
448
448
 
449
449
  from ansible.module_utils.basic import AnsibleModule, sanitize_keys
450
450
  from ansible.module_utils.six import binary_type, iteritems, string_types
451
- from ansible.module_utils.six.moves.urllib.parse import urlencode, urlsplit
451
+ from ansible.module_utils.six.moves.urllib.parse import urlencode, urljoin
452
452
  from ansible.module_utils.common.text.converters import to_native, to_text
453
453
  from ansible.module_utils.compat.datetime import utcnow, utcfromtimestamp
454
454
  from ansible.module_utils.six.moves.collections_abc import Mapping, Sequence
@@ -505,27 +505,6 @@ def write_file(module, dest, content, resp):
505
505
  os.remove(tmpsrc)
506
506
 
507
507
 
508
- def absolute_location(url, location):
509
- """Attempts to create an absolute URL based on initial URL, and
510
- next URL, specifically in the case of a ``Location`` header.
511
- """
512
-
513
- if '://' in location:
514
- return location
515
-
516
- elif location.startswith('/'):
517
- parts = urlsplit(url)
518
- base = url.replace(parts[2], '')
519
- return '%s%s' % (base, location)
520
-
521
- elif not location.startswith('/'):
522
- base = os.path.dirname(url)
523
- return '%s/%s' % (base, location)
524
-
525
- else:
526
- return location
527
-
528
-
529
508
  def kv_list(data):
530
509
  ''' Convert data into a list of key-value tuples '''
531
510
  if data is None:
@@ -766,7 +745,7 @@ def main():
766
745
  uresp[ukey] = value
767
746
 
768
747
  if 'location' in uresp:
769
- uresp['location'] = absolute_location(url, uresp['location'])
748
+ uresp['location'] = urljoin(url, uresp['location'])
770
749
 
771
750
  # Default content_encoding to try
772
751
  if isinstance(content, binary_type):
@@ -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.18.4rc1'
20
+ __version__ = '2.18.5rc1'
21
21
  __author__ = 'Ansible, Inc.'
22
22
  __codename__ = "Fool in the Rain"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ansible-core
3
- Version: 2.18.4rc1
3
+ Version: 2.18.5rc1
4
4
  Summary: Radically simple IT automation
5
5
  Author: Ansible Project
6
6
  Project-URL: Homepage, https://ansible.com/
@@ -3,7 +3,7 @@ ansible/__main__.py,sha256=24j-7-YT4lZ2fmV80JD-VRoYBnxR7YoP_VP-orJtDt0,796
3
3
  ansible/constants.py,sha256=dSgbrzNsmhYc4GQOWZvRm4XKgf--_MUWcMa_9_7l5Pc,9757
4
4
  ansible/context.py,sha256=oKYyfjfWpy8vDeProtqfnqSmuij_t75_5e5t0U_hQ1g,1933
5
5
  ansible/keyword_desc.yml,sha256=xD-MRMB8mSRaj2ADwRnjIEbOwJKbc6BYadouGPfS0mI,7462
6
- ansible/release.py,sha256=SXLNfTxaD4465i4ijtcjD3SyyHINjqY5VMjxvg7OQAk,839
6
+ ansible/release.py,sha256=Ob5YudZIt8bkqM0MS0D452618Jm7CsKJ4F44viLAvaI,839
7
7
  ansible/_vendor/__init__.py,sha256=2QBeBwT7uG7M3Aw-pIdCpt6XPtHMCpbEKfACYKA7xIg,2033
8
8
  ansible/cli/__init__.py,sha256=e0KjeLfG1Ketbwl-uOmQ-zXoq3_El80LnHTGu80d1gs,28111
9
9
  ansible/cli/adhoc.py,sha256=quJ9WzRzf3dz_dtDGmahNMffqyNVy1jzQCMo21YL5Qg,8194
@@ -141,7 +141,7 @@ ansible/inventory/host.py,sha256=PDb5OTplhfpUIvdHiP2BckUOB1gUl302N-3sW0_sTyg,503
141
141
  ansible/inventory/manager.py,sha256=45mHgZTAkQ3IjAtrgsNzJXvynC-HIEor-JJE-V3xXN4,29454
142
142
  ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
143
  ansible/module_utils/_text.py,sha256=VkWgAnSNVCbTQqZgllUObBFsH3uM4EUW5srl1UR9t1g,544
144
- ansible/module_utils/ansible_release.py,sha256=SXLNfTxaD4465i4ijtcjD3SyyHINjqY5VMjxvg7OQAk,839
144
+ ansible/module_utils/ansible_release.py,sha256=Ob5YudZIt8bkqM0MS0D452618Jm7CsKJ4F44viLAvaI,839
145
145
  ansible/module_utils/api.py,sha256=r4wd6XZGhUnxMF416Ry6ebgq8BIhjCPSPOvO2ZtrYxE,5785
146
146
  ansible/module_utils/basic.py,sha256=fogfpo_l7JtS34WvgwwOebmPfMhFjQaJN5CwjKgUJVE,86291
147
147
  ansible/module_utils/connection.py,sha256=8TviwCucQ7d_JILwaUHE4tCuNfR3U1WFkmxLMxWa8Rw,7671
@@ -296,13 +296,13 @@ ansible/modules/deb822_repository.py,sha256=SLJM8bBLc70WYu3-OA67wd5hMft3pznYAMIi
296
296
  ansible/modules/debconf.py,sha256=Y49U5pM6UpKvYAvDbOhYe6kmQFAaxjl7YoYnPrOaGGU,9362
297
297
  ansible/modules/debug.py,sha256=BFbzrU_vl-Try5DuLV20_sLgqxEJlPV9uOrgAtby2e8,2908
298
298
  ansible/modules/dnf.py,sha256=rsb28kjMMnTu-rPW0Pdnbs2RPyvfdhWgXeUORUSgzEI,52288
299
- ansible/modules/dnf5.py,sha256=AuuJ_R0MPbJRBqQdIq1R4OiFqIv5NSo21vlw5SRm5L8,30114
299
+ ansible/modules/dnf5.py,sha256=XoWefmwgnimVJfHCVUyPxEmecmIC2b_4PiHnSLYg41E,30453
300
300
  ansible/modules/dpkg_selections.py,sha256=lTWBhmVFrf6PsV4_BoR23wVTJOloCH1YNPcAn0m7DTY,2805
301
301
  ansible/modules/expect.py,sha256=O4emRoJ09i3OLmVX5j84WHkGKWg6bMytYpZlExOrSmc,9369
302
302
  ansible/modules/fail.py,sha256=95z8jFyVaizwwupSce04kj1wwnOmbM0ooUX7mXluoyU,1659
303
303
  ansible/modules/fetch.py,sha256=Fw1kwSocs5i-9Wtq1DiUalohSKnKDO2mP0-NpemkyxI,4191
304
304
  ansible/modules/file.py,sha256=5eqF6kah40uk9JcK3UGpS3od5aZYGeHTaT0ila0TVUw,41295
305
- ansible/modules/find.py,sha256=fbkK5QzpZ-Q5Ag9rS8wehJ7xL_yeI3SNBH_w3vw0TQw,23746
305
+ ansible/modules/find.py,sha256=v3ekgM6c2x5dc7RaNn-V0uwDthwfpT20-KdIpMiLleI,23760
306
306
  ansible/modules/gather_facts.py,sha256=UGqkkpP6Kd54r1U0FK8J1lb2Q0GyuuuxYMt2_4DEcoc,3095
307
307
  ansible/modules/get_url.py,sha256=niTIuzZz8QSjNEGvx6jLbqDronV_n1x-u2WS70IDHDM,27279
308
308
  ansible/modules/getent.py,sha256=zzEeJM64GuIScoRRkLgQhLJiE02ZMxAoOnhqVQO8KL8,5644
@@ -311,7 +311,7 @@ ansible/modules/group.py,sha256=khv7OVXeN07xVTf9Xf-ke1ngBVI0dEdq1cWHIeg0r0o,2374
311
311
  ansible/modules/group_by.py,sha256=BvqMil6pVI-k2uvLujYmO3uJTGFP-7FvVeYdv5i4ZDI,2416
312
312
  ansible/modules/hostname.py,sha256=RK8G68moZwoYtD2bOj6HzAUg9caER1ftCMdyAG9u10Q,28729
313
313
  ansible/modules/import_playbook.py,sha256=nDlfSR4cupiVdq7EvrACgDDa-s3QEjhwYHLcM5b_jg0,2056
314
- ansible/modules/import_role.py,sha256=YWRE_KTcnlJbi6xatOLoY1ORoSPaf98nRW2jbFHJHLU,3707
314
+ ansible/modules/import_role.py,sha256=oUCoFDI6q6ItBMYmFengw9R5NgjbdT2e04owLn3ytBM,3730
315
315
  ansible/modules/import_tasks.py,sha256=1shFYv_D_AsyIykUPP4UD-A3jSfZ_2OHKVBXbaoDbn8,2137
316
316
  ansible/modules/include_role.py,sha256=pAhL2LM-MgJGtHmjy1Cky-2ZUkF5TpOVHKlfnhPM0BE,4223
317
317
  ansible/modules/include_tasks.py,sha256=lxVLL_SE23TRQpwT1q1QqHf2EIvhzOF0qr4Lzi0qjGY,2659
@@ -346,10 +346,10 @@ ansible/modules/sysvinit.py,sha256=ec2tClhl3I08svzQ6UdiuaLmsBCcJ77xWdCKVws6WP0,1
346
346
  ansible/modules/tempfile.py,sha256=lA9e8lyFXf9J5ud0R6Jkt8sIFyRcOwzhc9Jz-5_HOZQ,3627
347
347
  ansible/modules/template.py,sha256=D1sm36GB_mEimH0CfWq1cJ4w1eRvpcsHwZ-ufVzC_Gs,4537
348
348
  ansible/modules/unarchive.py,sha256=wdSOFKhZqbAFq5j_tBZtUSamfr_EEW6_cTZDw-erMjs,45405
349
- ansible/modules/uri.py,sha256=rhybLSwlciwEvTbxTOvgRTZgdrCrmPaLSfoSdiIu0Xo,28390
349
+ ansible/modules/uri.py,sha256=UCANRxecG45I4HGtj1AX9k0I01w8dfTplWksejLHrIg,27846
350
350
  ansible/modules/user.py,sha256=w0RVtz89EA2JpAhwav_J-2mGFKnEfW7MxCTKeug-r14,123301
351
351
  ansible/modules/validate_argument_spec.py,sha256=XbWlUr4ElgLfdxo3qCN7M-IES_X2iTl3AgawzCOMQpo,3042
352
- ansible/modules/wait_for.py,sha256=VXFFcYG88EJVXnrJfa0fzh9rD_2luSty__qdzRuTAQE,27322
352
+ ansible/modules/wait_for.py,sha256=rsx_PR73-BRImLNErVUM1o9wRdPlXkGu5y6FhJ8wLcY,27355
353
353
  ansible/modules/wait_for_connection.py,sha256=8ySz5bhK7LGSaT_7Jzk3jvACcnngyR2g_ziyFLKk6Rk,3367
354
354
  ansible/modules/yum_repository.py,sha256=FPyNrW7SOBZGlzC63dP03Q-HCcGhYCI2pLlqYUQ1qy8,24461
355
355
  ansible/parsing/__init__.py,sha256=NMP9ZkK59SNdQktw76aWAXVAm5U2POXLgAK7wH-1h0g,742
@@ -408,7 +408,7 @@ ansible/plugins/action/debug.py,sha256=vPmHIfMAbuqpHb2aq0QS7M_g7Fu5pFTwMoYjCKCAa
408
408
  ansible/plugins/action/dnf.py,sha256=N10UXOlFgqzwQgoQfzlqpXIAgHB69OZvfwoC-m2-geM,3667
409
409
  ansible/plugins/action/fail.py,sha256=_1JuS0Z8Y8EB4FKG1u7KdP6xMuLobRHJsmtzmvN2CkU,1457
410
410
  ansible/plugins/action/fetch.py,sha256=cQAmUWEGMDjfVfHGviNtsT4i06rnoubL3EgrOlUZbLw,10188
411
- ansible/plugins/action/gather_facts.py,sha256=yNUrBPdzdJoA6euqy6k-gWpS_6yS0m-iBNq438PsbKk,9186
411
+ ansible/plugins/action/gather_facts.py,sha256=PnoZvkn56RbXk8J6vHL6avgo7PugkFv3u5zrtvjloe0,9188
412
412
  ansible/plugins/action/group_by.py,sha256=97d4TF9o7vS5y0s1HfGgvh70l2gkQ2uUGxy0knlok5Y,1894
413
413
  ansible/plugins/action/include_vars.py,sha256=_xPrP_BeGqbhvpJYQFDUkREL9UzZ6Y4q_AnCshvsn1A,11573
414
414
  ansible/plugins/action/normal.py,sha256=cCHrZ3z2kB_wnnSNkmJHJWcJNRgdoxnLUNeHex-P8DE,1854
@@ -491,7 +491,7 @@ ansible/plugins/filter/from_yaml.yml,sha256=XjZmeNDgx5aUqQZFb0e-RzlQw4n74XUe2ci9
491
491
  ansible/plugins/filter/from_yaml_all.yml,sha256=sCpbY8oVS0Djo1Nlaom3jd82yWPxFvYo79c2AxVEkpk,1282
492
492
  ansible/plugins/filter/hash.yml,sha256=XYE7Um2YAo6AODup2n4ugiXxXk_NH9FLXVSiHCbDevM,861
493
493
  ansible/plugins/filter/human_readable.yml,sha256=yJHoHxcIetCkksD0Pkqsp6TjXN_z5JYfxjvMkEO1SrU,993
494
- ansible/plugins/filter/human_to_bytes.yml,sha256=KKxN_7smFmx3ELbZwLRdYc_DKjqE_n-a3C9fpsxT3q0,1303
494
+ ansible/plugins/filter/human_to_bytes.yml,sha256=09fSlWQRPFxJR8WvRgV5LjKbJoI8VvHJ62ntCj1WqY4,1306
495
495
  ansible/plugins/filter/intersect.yml,sha256=9QNicYe8aL3Lb1fwXTRe_qntvzqQ8n1ORZZ7gI-bnR4,1036
496
496
  ansible/plugins/filter/items2dict.yml,sha256=56H1AnvCt6P2F7UByycH6Xr5Ux9qrxskuGMOWXg2HTE,1561
497
497
  ansible/plugins/filter/log.yml,sha256=QRklpKa4SFsiv2BG6tIk1gKMttjordhmsqIp29nuX5M,904
@@ -980,13 +980,13 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
980
980
  ansible_test/config/config.yml,sha256=1zdGucnIl6nIecZA7ISIANvqXiHWqq6Dthsk_6MUwNc,2642
981
981
  ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
982
982
  ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
983
- ansible_core-2.18.4rc1.dist-info/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
984
- ansible_core-2.18.4rc1.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
985
- ansible_core-2.18.4rc1.dist-info/METADATA,sha256=qc8cuCwZ2vr24uFhx1AVFZQNwDJA9AEAeTWTkgHJYXM,7671
986
- ansible_core-2.18.4rc1.dist-info/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
987
- ansible_core-2.18.4rc1.dist-info/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
988
- ansible_core-2.18.4rc1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
989
- ansible_core-2.18.4rc1.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
990
- ansible_core-2.18.4rc1.dist-info/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
991
- ansible_core-2.18.4rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
992
- ansible_core-2.18.4rc1.dist-info/RECORD,,
983
+ ansible_core-2.18.5rc1.dist-info/Apache-License.txt,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
984
+ ansible_core-2.18.5rc1.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
985
+ ansible_core-2.18.5rc1.dist-info/METADATA,sha256=xNPUWNGKIEx9k_8Iyw9UUDwyt1krVat6gvOWxRnoTrw,7671
986
+ ansible_core-2.18.5rc1.dist-info/MIT-license.txt,sha256=jLXp2XurnyZKbye40g9tfmLGtVlxh3pPD4n8xNqX8xc,1023
987
+ ansible_core-2.18.5rc1.dist-info/PSF-license.txt,sha256=g7BC_H1qyg8Q1o5F76Vrm8ChSWYI5-dyj-CdGlNKBUo,2484
988
+ ansible_core-2.18.5rc1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
989
+ ansible_core-2.18.5rc1.dist-info/entry_points.txt,sha256=S9yJij5Im6FgRQxzkqSCnPQokC7PcWrDW_NSygZczJU,451
990
+ ansible_core-2.18.5rc1.dist-info/simplified_bsd.txt,sha256=8R5R7R7sOa0h1Fi6RNgFgHowHBfun-OVOMzJ4rKAk2w,1237
991
+ ansible_core-2.18.5rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
992
+ ansible_core-2.18.5rc1.dist-info/RECORD,,