fix inmem-split-host.yml for ansible 2.9
This commit is contained in:
@ -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
|
||||
|
||||
|
||||
# =========================================================================== #
|
||||
|
Reference in New Issue
Block a user