1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-08-24 17:49:28 +03:00

M #-: fix minor bug in DDC playbooks (#4687)

This commit is contained in:
Alejandro Huertas Herrero
2020-05-11 13:16:04 +02:00
committed by GitHub
parent 54d60c4223
commit 7dc4b0033f

View File

@ -242,8 +242,10 @@ module OneProvision
base.delete('playbook')
end
yaml['playbook'] = [yaml['playbook']]
yaml['playbook'].flatten!
if yaml['playbook']
yaml['playbook'] = [yaml['playbook']]
yaml['playbook'].flatten!
end
# replace scalars or append array from child YAML
yaml.each do |key, value|