1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

default play name to hosts entry

return to previous behaviour as now the name was left blank
This commit is contained in:
Brian Coca 2016-02-25 11:25:17 -05:00
parent 064cdec6ff
commit 2d56293768

View file

@ -105,6 +105,8 @@ class Play(Base, Taggable, Become):
@staticmethod
def load(data, variable_manager=None, loader=None):
if ('name' not in data or data['name'] is None) and 'hosts' in data:
data['name'] = data['hosts']
p = Play()
return p.load_data(data, variable_manager=variable_manager, loader=loader)