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:
parent
064cdec6ff
commit
2d56293768
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue