fix inmem-split-host.yml for ansible 2.9

This commit is contained in:
2022-09-02 13:34:34 -04:00
parent 0767ca5f20
commit 1423653a04
5 changed files with 10 additions and 3 deletions

View File

@ -20,7 +20,10 @@
groups :
- remdiation
delegate_to: localhost
loop: "{{ provision_host | split(',') }}"
loop: "{{ provision_host.split(',') }}" # Please take note of the split
# differences between Ansible versions
# str.split() - Ansible <= 2.9
# str | split - Ansible >= 2.10
# =========================================================================== #