ansible-core 2.16.7__py3-none-any.whl → 2.16.8rc1__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.
@@ -178,6 +178,7 @@ $($ErrorRecord.InvocationInfo.PositionMessage)
178
178
 
179
179
  Write-AnsibleLog "INFO - converting json raw to a payload" "exec_wrapper"
180
180
  $payload = ConvertFrom-AnsibleJson -InputObject $json_raw
181
+ $payload.module_args._ansible_exec_wrapper_warnings = [System.Collections.Generic.List[string]]@()
181
182
 
182
183
  # TODO: handle binary modules
183
184
  # TODO: handle persistence
@@ -29,7 +29,18 @@ if ($csharp_utils.Count -gt 0) {
29
29
 
30
30
  # add any C# references so the module does not have to do so
31
31
  $new_tmp = [System.Environment]::ExpandEnvironmentVariables($Payload.module_args["_ansible_remote_tmp"])
32
- Add-CSharpType -References $csharp_utils -TempPath $new_tmp -IncludeDebugInfo
32
+
33
+ # We use a fake module object to capture warnings
34
+ $fake_module = [PSCustomObject]@{
35
+ Tmpdir = $new_tmp
36
+ Verbosity = 3
37
+ }
38
+ $warning_func = New-Object -TypeName System.Management.Automation.PSScriptMethod -ArgumentList Warn, {
39
+ param($message)
40
+ $Payload.module_args._ansible_exec_wrapper_warnings.Add($message)
41
+ }
42
+ $fake_module.PSObject.Members.Add($warning_func)
43
+ Add-CSharpType -References $csharp_utils -AnsibleModule $fake_module
33
44
  }
34
45
 
35
46
  if ($Payload.ContainsKey("coverage") -and $null -ne $host.Runspace -and $null -ne $host.Runspace.Debugger) {
@@ -19,6 +19,6 @@
19
19
  from __future__ import (absolute_import, division, print_function)
20
20
  __metaclass__ = type
21
21
 
22
- __version__ = '2.16.7'
22
+ __version__ = '2.16.8rc1'
23
23
  __author__ = 'Ansible, Inc.'
24
24
  __codename__ = "All My Love"
@@ -1008,7 +1008,16 @@ namespace Ansible.Basic
1008
1008
  foreach (DictionaryEntry entry in param)
1009
1009
  {
1010
1010
  string paramKey = (string)entry.Key;
1011
- if (!legalInputs.Contains(paramKey, StringComparer.OrdinalIgnoreCase))
1011
+ if (paramKey == "_ansible_exec_wrapper_warnings")
1012
+ {
1013
+ // Special key used in module_powershell_wrapper to pass
1014
+ // along any warnings that should be returned back to
1015
+ // Ansible.
1016
+ removedParameters.Add(paramKey);
1017
+ foreach (string warning in (IList<string>)entry.Value)
1018
+ Warn(warning);
1019
+ }
1020
+ else if (!legalInputs.Contains(paramKey, StringComparer.OrdinalIgnoreCase))
1012
1021
  unsupportedParameters.Add(paramKey);
1013
1022
  else if (!legalInputs.Contains(paramKey))
1014
1023
  // For backwards compatibility we do not care about the case but we need to warn the users as this will
@@ -75,7 +75,7 @@ Function Add-CSharpType {
75
75
  [Switch]$IgnoreWarnings,
76
76
  [Switch]$PassThru,
77
77
  [Parameter(Mandatory = $true, ParameterSetName = "Module")][Object]$AnsibleModule,
78
- [Parameter(ParameterSetName = "Manual")][String]$TempPath = $env:TMP,
78
+ [Parameter(ParameterSetName = "Manual")][String]$TempPath,
79
79
  [Parameter(ParameterSetName = "Manual")][Switch]$IncludeDebugInfo,
80
80
  [String[]]$CompileSymbols = @()
81
81
  )
@@ -280,9 +280,11 @@ Function Add-CSharpType {
280
280
  $include_debug = $AnsibleModule.Verbosity -ge 3
281
281
  }
282
282
  else {
283
- $temp_path = $TempPath
283
+ $temp_path = [System.IO.Path]::GetTempPath()
284
284
  $include_debug = $IncludeDebugInfo.IsPresent
285
285
  }
286
+ $temp_path = Join-Path -Path $temp_path -ChildPath ([Guid]::NewGuid().Guid)
287
+
286
288
  $compiler_options = [System.Collections.ArrayList]@("/optimize")
287
289
  if ($defined_symbols.Count -gt 0) {
288
290
  $compiler_options.Add("/define:" + ([String]::Join(";", $defined_symbols.ToArray()))) > $null
@@ -304,8 +306,12 @@ Function Add-CSharpType {
304
306
  )
305
307
 
306
308
  # create a code snippet for each reference and check if we need
307
- # to reference any extra assemblies
308
- $ignore_warnings = [System.Collections.ArrayList]@()
309
+ # to reference any extra assemblies.
310
+ # CS1610 is a warning when csc.exe failed to delete temporary files.
311
+ # We use our own temp dir deletion mechanism so this doesn't become a
312
+ # fatal error.
313
+ # https://github.com/ansible-collections/ansible.windows/issues/598
314
+ $ignore_warnings = [System.Collections.ArrayList]@('1610')
309
315
  $compile_units = [System.Collections.Generic.List`1[System.CodeDom.CodeSnippetCompileUnit]]@()
310
316
  foreach ($reference in $References) {
311
317
  # scan through code and add any assemblies that match
@@ -373,7 +379,26 @@ Function Add-CSharpType {
373
379
  }
374
380
  }
375
381
 
376
- $compile = $provider.CompileAssemblyFromDom($compile_parameters, $compile_units)
382
+ $null = New-Item -Path $temp_path -ItemType Directory -Force
383
+ try {
384
+ $compile = $provider.CompileAssemblyFromDom($compile_parameters, $compile_units)
385
+ }
386
+ finally {
387
+ # Try to delete the temp path, if this fails and we are running
388
+ # with a module object write a warning instead of failing.
389
+ try {
390
+ [System.IO.Directory]::Delete($temp_path, $true)
391
+ }
392
+ catch {
393
+ $msg = "Failed to cleanup temporary directory '$temp_path' used for compiling C# code."
394
+ if ($AnsibleModule) {
395
+ $AnsibleModule.Warn("$msg Files may still be present after the task is complete. Error: $_")
396
+ }
397
+ else {
398
+ throw "$msg Error: $_"
399
+ }
400
+ }
401
+ }
377
402
  }
378
403
  finally {
379
404
  foreach ($kvp in $originalEnv.GetEnumerator()) {
@@ -55,6 +55,17 @@ BUILTIN_TASKS = frozenset(add_internal_fqcns((
55
55
  )))
56
56
 
57
57
 
58
+ def _get_action_context(action_or_module, collection_list):
59
+ module_context = module_loader.find_plugin_with_context(action_or_module, collection_list=collection_list)
60
+ if module_context and module_context.resolved and module_context.action_plugin:
61
+ action_or_module = module_context.action_plugin
62
+
63
+ context = action_loader.find_plugin_with_context(action_or_module, collection_list=collection_list)
64
+ if not context or not context.resolved:
65
+ context = module_context
66
+ return context
67
+
68
+
58
69
  class ModuleArgsParser:
59
70
 
60
71
  """
@@ -289,6 +300,11 @@ class ModuleArgsParser:
289
300
  delegate_to = 'localhost'
290
301
  action, args = self._normalize_parameters(thing, action=action, additional_args=additional_args)
291
302
 
303
+ if action is not None and not skip_action_validation:
304
+ context = _get_action_context(action, self._collection_list)
305
+ if context is not None and context.resolved:
306
+ self.resolved_action = context.resolved_fqcn
307
+
292
308
  # module: <stuff> is the more new-style invocation
293
309
 
294
310
  # filter out task attributes so we're only querying unrecognized keys as actions/modules
@@ -304,9 +320,7 @@ class ModuleArgsParser:
304
320
  is_action_candidate = True
305
321
  else:
306
322
  try:
307
- context = action_loader.find_plugin_with_context(item, collection_list=self._collection_list)
308
- if not context.resolved:
309
- context = module_loader.find_plugin_with_context(item, collection_list=self._collection_list)
323
+ context = _get_action_context(item, self._collection_list)
310
324
  except AnsibleError as e:
311
325
  if e.obj is None:
312
326
  e.obj = self._task_ds
ansible/playbook/task.py CHANGED
@@ -210,6 +210,7 @@ class Task(Base, Conditional, Taggable, CollectionSearch, Notifiable, Delegatabl
210
210
  # But if it wasn't, we can add the yaml object now to get more detail
211
211
  raise AnsibleParserError(to_native(e), obj=ds, orig_exc=e)
212
212
  else:
213
+ # Set the resolved action plugin (or if it does not exist, module) for callbacks.
213
214
  self.resolved_action = args_parser.resolved_action
214
215
 
215
216
  # the command/shell/script modules used to support the `cmd` arg,
@@ -14,14 +14,14 @@ DOCUMENTATION:
14
14
 
15
15
  EXAMPLES: |
16
16
 
17
- # gobble => [ '/etc/make', 'conf' ]
17
+ # gobble => [ '/etc/make', '.conf' ]
18
18
  gobble: "{{ '/etc/make.conf' | splitext }}"
19
19
 
20
- # file_n_ext => [ 'ansible', 'cfg' ]
20
+ # file_n_ext => [ 'ansible', '.cfg' ]
21
21
  file_n_ext: "{{ 'ansible.cfg' | splitext }}"
22
22
 
23
- # hoax => ['/etc/hoasdf', '']
24
- hoax: '{{ "/etc//hoasdf/" | splitext }}'
23
+ # hoax => [ '/etc/hoasdf', '' ]
24
+ hoax: "{{ '/etc/hoasdf' | splitext }}"
25
25
 
26
26
  RETURN:
27
27
  _value:
@@ -5,6 +5,8 @@ DOCUMENTATION:
5
5
  short_description: Split a Windows path by the drive letter
6
6
  description:
7
7
  - Returns a list with the first component being the drive letter and the second, the rest of the path.
8
+ - If the path contains a drive letter, drive will contain everything up to and including the colon.
9
+ - If the path contains a UNC (Universal Naming Convention) path, drive will contain the host name and share, up to but not including the fourth separator.
8
10
  options:
9
11
  _input:
10
12
  description: A Windows path.
@@ -13,17 +15,27 @@ DOCUMENTATION:
13
15
 
14
16
  EXAMPLES: |
15
17
 
16
- # To get the last name of a file Windows path, like ['C', '\Users\asdf\foo.txt'] out of 'C:\Users\asdf\foo.txt'
18
+ # To get the last name of a file Windows path, like ['C:', '\Users\asdf\foo.txt'] out of 'C:\Users\asdf\foo.txt'
17
19
  {{ mypath | win_splitdrive }}
18
20
 
19
- # just the drive letter
21
+ # To get path from UNC (Universal Naming Convention) path, like ['//host/computer', '/dir/a'] out of '//host/computer/dir/a'
22
+
23
+ # just the drive letter, like ['C:'] out of 'C:\Users\asdf\foo.txt'
24
+ {{ mypath | win_splitdrive | first }}
25
+
26
+ # path w/o drive letter, like ['\Users\asdf\foo.txt'] out of 'C:\Users\asdf\foo.txt'
27
+ {{ mypath | win_splitdrive | last }}
28
+
29
+ # just the hostname and share, like ['//host/computer'] out of '//host/computer/dir/a'
20
30
  {{ mypath | win_splitdrive | first }}
21
31
 
22
- # path w/o drive letter
32
+ # path w/o hostname and share, like ['/dir/a'] out of '//host/computer/dir/a'
23
33
  {{ mypath | win_splitdrive | last }}
24
34
 
25
35
  RETURN:
26
36
  _value:
27
- description: List in which the first element is the drive letter and the second the rest of the path.
37
+ description:
38
+ - List in which the first element is the drive letter with colon and the second the rest of the path.
39
+ - In case of UNC path, first element is the hostname and share and the second the rest of the path.
28
40
  type: list
29
41
  elements: str
ansible/release.py CHANGED
@@ -19,6 +19,6 @@
19
19
  from __future__ import (absolute_import, division, print_function)
20
20
  __metaclass__ = type
21
21
 
22
- __version__ = '2.16.7'
22
+ __version__ = '2.16.8rc1'
23
23
  __author__ = 'Ansible, Inc.'
24
24
  __codename__ = "All My Love"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansible-core
3
- Version: 2.16.7
3
+ Version: 2.16.8rc1
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=IvyRvY64pT0on94qCLibxgDJ0-7_2CRoaZ5kfGOl54Q,1395
3
3
  ansible/constants.py,sha256=FvX7PDG0GWV91Vszb5-DFKvkR8O2OTpBmIbQk-d51sc,9193
4
4
  ansible/context.py,sha256=OzSlaA_GgGRyyf5I209sy19_eGOX6HXn441W9w_FcvU,2018
5
5
  ansible/keyword_desc.yml,sha256=vE9joFgSeHR4Djl7Bd-HHVCrGByRCrTUmWYZ8LKPZKk,7412
6
- ansible/release.py,sha256=yCaE8NXeZ8dXAHkgxe7eU4U1rgrGOZGMo-FSHm2VL0I,915
6
+ ansible/release.py,sha256=F0Y2yj4Ieew0Gz06i0dylwsVDHqLKThqgny5TxubEkI,918
7
7
  ansible/_vendor/__init__.py,sha256=wJRKH7kI9OzYVY9hgSchOsTNTmTnugpPLGYj9Y5akX0,2086
8
8
  ansible/cli/__init__.py,sha256=6jaX6SS-UBM7pjiUlDsC0y07k3klUjxTR5ZEnDiCmP8,28706
9
9
  ansible/cli/adhoc.py,sha256=suzo4QnsaMjJBk5JlAUd-cpQLs8Ckj6A55CiG9Y8Gns,8247
@@ -48,9 +48,9 @@ ansible/executor/powershell/async_wrapper.ps1,sha256=XwYF4S-F3vAUBHd45O9GOTco-oG
48
48
  ansible/executor/powershell/become_wrapper.ps1,sha256=c0a4nYlFbpoZHzRpRHKgndZbYB18K5t9YJWC_HgBiH8,7439
49
49
  ansible/executor/powershell/bootstrap_wrapper.ps1,sha256=8xudggKTMGibFCspF5m2BrJALARd67Rj062qCbKM2eY,487
50
50
  ansible/executor/powershell/coverage_wrapper.ps1,sha256=EM4X0tEWw2vMrNVQoxen6y8rYxTB8kEjx3PHoH4Mx5c,8296
51
- ansible/executor/powershell/exec_wrapper.ps1,sha256=6jHQZntr_WTD6tRlVV3mxgsvSZksdVtJM95HC_b9N2E,10128
51
+ ansible/executor/powershell/exec_wrapper.ps1,sha256=RS5uzkSebd7WiR-gh-4mOBi1VUUHItKa4oPrh75xUP8,10231
52
52
  ansible/executor/powershell/module_manifest.py,sha256=OXTzMJR2zv8WCYTcJnZvlmcu2fo1Lv0jKH-HArhYmq4,17449
53
- ansible/executor/powershell/module_powershell_wrapper.ps1,sha256=6dPo5tSV6B-KipCBrz3iTvOM2Y_yj-gn_u7OKKmfjAs,3179
53
+ ansible/executor/powershell/module_powershell_wrapper.ps1,sha256=AkHcfW-qx5AJUqZ02Gvb907oCAYSptRwqb8RVyNJvHg,3581
54
54
  ansible/executor/powershell/module_script_wrapper.ps1,sha256=Th1KTjKE3aOul6kRMunUj0EXFf7Jn7WOH-byCap9pqU,872
55
55
  ansible/executor/powershell/module_wrapper.ps1,sha256=KFIQHPNnzA88Y4lkzn3B3LH3oz-4AAajU36ju9AZx9g,9042
56
56
  ansible/executor/process/__init__.py,sha256=1lMXN1i2fFqslda4BmeI5tpYMFP95D5Wpr1AjDJi-SQ,833
@@ -140,7 +140,7 @@ ansible/inventory/host.py,sha256=7RZjLiB7M74bejFRflOTa8XPHxMC334qhSo_5VmZrKI,512
140
140
  ansible/inventory/manager.py,sha256=ZwmEF3E2BKOJi9SMVQNz83A2f3raQn6Nyo-rfSNMn2k,29507
141
141
  ansible/module_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
142
  ansible/module_utils/_text.py,sha256=F_YfeaxhwmTI16HICAzQS9ZmlKgBDdQ4mqR-Kh--okg,597
143
- ansible/module_utils/ansible_release.py,sha256=yCaE8NXeZ8dXAHkgxe7eU4U1rgrGOZGMo-FSHm2VL0I,915
143
+ ansible/module_utils/ansible_release.py,sha256=F0Y2yj4Ieew0Gz06i0dylwsVDHqLKThqgny5TxubEkI,918
144
144
  ansible/module_utils/api.py,sha256=BTo7stVOANbtd-ngZslaqx70r9t5gfvo44cKyu5SFjU,5837
145
145
  ansible/module_utils/basic.py,sha256=7xL3IsZK68gyyYm2x8yB2s1V7Sx77-vK3rkXmp2mlCM,87489
146
146
  ansible/module_utils/connection.py,sha256=9Us-d-y1bhC3zNnziQxvYNT4umIaN0OYv8zPaUSdEf0,8447
@@ -182,7 +182,7 @@ ansible/module_utils/compat/selinux.py,sha256=CWcRNvfxZqaNH47BQj0BjZQZ_vfSuifs0o
182
182
  ansible/module_utils/compat/typing.py,sha256=92HoQDjJRt0LvAhvrWSvia0O-ODrseEjlFw8upSOQu0,789
183
183
  ansible/module_utils/compat/version.py,sha256=UKmpFhMk-Y9vuYfgmaT5NYctS3WFU-Xn9ycEzl01Nlc,12787
184
184
  ansible/module_utils/csharp/Ansible.AccessToken.cs,sha256=4HzIFQKGG3ZTg8tehVcM_ukMi057wxxLdYFZoqsij5I,15871
185
- ansible/module_utils/csharp/Ansible.Basic.cs,sha256=slTfWp_cpHuxlzjSQMT5VMqIBKg8XE0Ynsa_w0WoX7Q,77734
185
+ ansible/module_utils/csharp/Ansible.Basic.cs,sha256=QPssCWS-VjLbJKW9YE9JzgWy5VnQwGj2HWEgRXBWY3U,78191
186
186
  ansible/module_utils/csharp/Ansible.Become.cs,sha256=1yasfX8SpbcIWJWiobr2Ms-Hl5W47_XNSKvwMXOyiz4,30457
187
187
  ansible/module_utils/csharp/Ansible.Privilege.cs,sha256=7e46na6k6ygdRwN53bzfIS8O-IwfM1TF_q5DeFH2Z80,19398
188
188
  ansible/module_utils/csharp/Ansible.Process.cs,sha256=g6R2PkbxiVBry4bk35ieWwYCAZOi7RSeyKmtOW8j90I,19449
@@ -262,7 +262,7 @@ ansible/module_utils/facts/virtual/sunos.py,sha256=_m7Ob1v-9T3nEAs5JJleTuGXHKNWz
262
262
  ansible/module_utils/facts/virtual/sysctl.py,sha256=sh_csTWKxaTQCfe5HIsBQMCd-S5KT1b0XKVhZZ31PNw,5313
263
263
  ansible/module_utils/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
264
264
  ansible/module_utils/parsing/convert_bool.py,sha256=bGVeVvgUcXv6Rm7B5jdfNIJ7GGNvvVRa1PWomu0o1X8,1114
265
- ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=MdM_0YR0eyNrtrgQtNnWP182ZBWa-2MR_CfHt5JoHzU,18847
265
+ ansible/module_utils/powershell/Ansible.ModuleUtils.AddType.psm1,sha256=WOHO9E576ivZk8lOQaujXGnNDzz46pVvmIGjvPKxJsE,20040
266
266
  ansible/module_utils/powershell/Ansible.ModuleUtils.ArgvParser.psm1,sha256=x9wTV5jOpoCtFbpZW6GoZEELdL3RNOhdY91QOhYxJqk,3327
267
267
  ansible/module_utils/powershell/Ansible.ModuleUtils.Backup.psm1,sha256=ebgpraCNmPwswlLHShgiviTk2thw8ch3ekF5n_I_cXg,1104
268
268
  ansible/module_utils/powershell/Ansible.ModuleUtils.CamelConversion.psm1,sha256=ySb9N6g0sWnUpgUMtDyBSBgjtQmvlye3NoXl3fiu_5g,2456
@@ -351,7 +351,7 @@ ansible/modules/yum_repository.py,sha256=36uZERU09bfvTTsmr3Qx4p1TWZ8V4fQ64LLLOlx
351
351
  ansible/parsing/__init__.py,sha256=fPEa2N1Z4mjQHwps752TC-vhKA1CkCoEcAjh0YkfM5Y,826
352
352
  ansible/parsing/ajson.py,sha256=CZ3s2arKLvMWz5rzRIhzutRGSx73aS6fDg4C94HAHVA,1338
353
353
  ansible/parsing/dataloader.py,sha256=1T_DGy16iZoQzoIdv57HCGLv9AuPB_W2oJ_T1UlJQE0,20466
354
- ansible/parsing/mod_args.py,sha256=LOnMmK5Twr99HVoRItYjUKAjFWF9Jp7xpzgXtnVT8yk,13892
354
+ ansible/parsing/mod_args.py,sha256=b72Oj7iW8JJiRRznEyOKZM_asu1hryn_Q7fbyCYHQ7E,14462
355
355
  ansible/parsing/plugin_docs.py,sha256=JdK4OiFa7lSu9_-ztKQ7RPJs2FrmZejhE3YLESe-41Y,8714
356
356
  ansible/parsing/quoting.py,sha256=OsrBXkTzgn8PHH7VGA0kqnz6jBejdoQymDqsOYxTF-M,1141
357
357
  ansible/parsing/splitter.py,sha256=4rFm0Kr9QDv4VYw6uO2IaUzU52qAf7j8gsvVSDYRbAQ,11105
@@ -383,7 +383,7 @@ ansible/playbook/play_context.py,sha256=vocmas7gJXDlJB8Hm5CLdCSEbE6eCRhor4sskA1l
383
383
  ansible/playbook/playbook_include.py,sha256=M0CZ7nGCvCNQuZQXwNHSXi9IhKXJLV74Bd9YvcarrZ4,7577
384
384
  ansible/playbook/role_include.py,sha256=9IsYSolvScuzBREoDh2lg-S6mN7_WAF-usQMZvVX2dQ,7968
385
385
  ansible/playbook/taggable.py,sha256=QpIS7BXQ9N48Vu1HW96OdSMyrQHckYtCgsVL9-mv-Ts,3249
386
- ansible/playbook/task.py,sha256=Vxn471kaQYgVckQ27MxZfNvs5luEo8HLUcXSlXmbU30,21490
386
+ ansible/playbook/task.py,sha256=OeoBa1ZU1rd3QZZrrrgQhPJ5B3OAi4tWnZasrFG2jfQ,21584
387
387
  ansible/playbook/task_include.py,sha256=C3x_tTzbRLTMsXCGonzp3SAzE7VuslvcAlwN4WqF-KM,5318
388
388
  ansible/playbook/role/__init__.py,sha256=ZPASFccReB6DaJtZZ5UT_0IXtZjLTzdEQoP9ebiIom0,29781
389
389
  ansible/playbook/role/definition.py,sha256=MGvEmAsOUYj2geHD5H7JG4N5O3wCxQwmtlH7IpgZqfk,9634
@@ -514,7 +514,7 @@ ansible/plugins/filter/root.yml,sha256=sT1tsUZ5NBX7LjrPc-08Omg__szm9kOlamivlflJJ
514
514
  ansible/plugins/filter/sha1.yml,sha256=Un-4PtcF2eCoc22ezn5QcsIotbpGTnRxAcZRzgv1BwM,729
515
515
  ansible/plugins/filter/shuffle.yml,sha256=rcdsrsZhe5tMqtF00V8khecdVKmzHnHwkUqIdISrpQQ,685
516
516
  ansible/plugins/filter/split.yml,sha256=rLF3diTDl3ZxxGCqEtdjqYPUwZkqlln1rxbKsuM0G_E,835
517
- ansible/plugins/filter/splitext.yml,sha256=BP4cb5btISHFeyP4K-YBty7jd1PfV90yjIhpB1cuxQY,748
517
+ ansible/plugins/filter/splitext.yml,sha256=8LnOkRdTaZwm9B560Kt__wquDwyvpKfznvICHIIcRy0,750
518
518
  ansible/plugins/filter/strftime.yml,sha256=cjUzZF1-93ceDKp03oKfrHyC1FuP7ugVfqzXASQd7eE,1862
519
519
  ansible/plugins/filter/subelements.yml,sha256=JKHy2GRpOi5zLXZVRtmZoIs_J8sDEuAR0qiT9RkLWLY,1438
520
520
  ansible/plugins/filter/symmetric_difference.yml,sha256=2eqzKo8ZCtAY6xxd5f74TEHNhZ6rVeQVimMSRO_DgnU,1094
@@ -535,7 +535,7 @@ ansible/plugins/filter/urlsplit.py,sha256=iWvi_BDqZPPFAqE1aveehCKlN0eKxNfkO4YQOz
535
535
  ansible/plugins/filter/vault.yml,sha256=best4Ns3YLXITc1KwxLZTdOT41OFSgIJ8itdxlNYcNU,1668
536
536
  ansible/plugins/filter/win_basename.yml,sha256=hAdBZBrh80ULOehK9-7XrFiqoOx8Mg9usKAH8WEJogg,673
537
537
  ansible/plugins/filter/win_dirname.yml,sha256=nVHAM8iUuXYlc_xE-IO7qAOh2ZMIGZuA4IEgvgnXVtI,679
538
- ansible/plugins/filter/win_splitdrive.yml,sha256=NCgVxQ41uL5IwFVARPJQdJ2faX-Po_VR13me684_1RY,819
538
+ ansible/plugins/filter/win_splitdrive.yml,sha256=C2MPXUTJL4zqPa4x3uDKiVftF4aHyGQME4trukBPiZk,1687
539
539
  ansible/plugins/filter/zip.yml,sha256=6WvbLE3l-I94Gw0lMr9Z548_V5DYaa2ivq0BF9WmmO0,1352
540
540
  ansible/plugins/filter/zip_longest.yml,sha256=zD4opQA67ZIxm8JVbqICZYxtL5vN4LXhi37vsrPKoWU,1256
541
541
  ansible/plugins/httpapi/__init__.py,sha256=Q1qqF1y-VLKVbAz5VnlZzZ0i0WaHjWWIpb4WNp5mfbI,3146
@@ -682,7 +682,7 @@ ansible/vars/hostvars.py,sha256=px4HRxotkuXedT6pbLTa6TyptNwRp5ttzVUgBjm0LRI,4896
682
682
  ansible/vars/manager.py,sha256=lIfISTPyRcNfJVWJhhNof36Zmk6xSMUkf9sFxrzCzcI,38180
683
683
  ansible/vars/plugins.py,sha256=RsRU9fiLcJwPIAyTYnmVZglsiEOMCIgQskflavE-XnE,4546
684
684
  ansible/vars/reserved.py,sha256=FBD7n2dnA0CW4I0J1LtWwk2hQqvGW0KTRPcxaRtMKWo,2615
685
- ansible_core-2.16.7.data/scripts/ansible-test,sha256=CYIYL99IxWdVTtDIj3avilIJXhGAmtjuKPPWNuLWuc8,1690
685
+ ansible_core-2.16.8rc1.data/scripts/ansible-test,sha256=CYIYL99IxWdVTtDIj3avilIJXhGAmtjuKPPWNuLWuc8,1690
686
686
  ansible_test/__init__.py,sha256=6e721yAyyyocRKzbCKtQXloAfFP7Aqv0L3zG70uh-4A,190
687
687
  ansible_test/_data/ansible.cfg,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
688
688
  ansible_test/_data/coveragerc,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1001,9 +1001,9 @@ ansible_test/config/cloud-config-vultr.ini.template,sha256=XLKHk3lg_8ReQMdWfZzhh
1001
1001
  ansible_test/config/config.yml,sha256=wb3knoBmZewG3GWOMnRHoVPQWW4vPixKLPMNS6vJmTc,2620
1002
1002
  ansible_test/config/inventory.networking.template,sha256=bFNSk8zNQOaZ_twaflrY0XZ9mLwUbRLuNT0BdIFwvn4,1335
1003
1003
  ansible_test/config/inventory.winrm.template,sha256=1QU8W-GFLnYEw8yY9bVIvUAVvJYPM3hyoijf6-M7T00,1098
1004
- ansible_core-2.16.7.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
1005
- ansible_core-2.16.7.dist-info/METADATA,sha256=CZg7Zb3SVTQUVQTRGWH1Ze_n99Mad0hupzX44L02aJM,6905
1006
- ansible_core-2.16.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1007
- ansible_core-2.16.7.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
1008
- ansible_core-2.16.7.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
1009
- ansible_core-2.16.7.dist-info/RECORD,,
1004
+ ansible_core-2.16.8rc1.dist-info/COPYING,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
1005
+ ansible_core-2.16.8rc1.dist-info/METADATA,sha256=8qOtVxgmDq4b3PTAKfCrEsagM_SN24wNRV85wZ7GH6c,6908
1006
+ ansible_core-2.16.8rc1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
1007
+ ansible_core-2.16.8rc1.dist-info/entry_points.txt,sha256=0mpmsrIhODChxKl3eS-NcVQCaMetBn8KdPLtVxQgR64,453
1008
+ ansible_core-2.16.8rc1.dist-info/top_level.txt,sha256=IFbRLjAvih1DYzJWg3_F6t4sCzEMxRO7TOMNs6GkYHo,21
1009
+ ansible_core-2.16.8rc1.dist-info/RECORD,,