Fix serial/wwn gathering for ansible+python3

Change-Id: Ifd0c3d6be14c9e1369624bb4a02043e7345f4a03
Story: #2006266
Task: #35957
This commit is contained in:
Raphael Glon 2019-07-23 16:52:33 +02:00
parent daddf516bf
commit 54054c0e5a
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
- name: get devices wwn facts
facts_wwn:
devices: "{{ ansible_devices.keys() }}"
devices: "{{ ansible_devices.keys() | list }}"
- name: calculate root hint
root_hints:

View File

@ -0,0 +1,6 @@
---
fixes:
- |
An issue regarding the ``ansible`` deploy interface. The discovery
playbook used to gather wwn and serials was broken for python3 due to the
dict().keys() object not being a list in python3.