mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make the default playbook name an empty string (v2)
This commit is contained in:
parent
8214ac7841
commit
50542db0be
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class Play(Base, Taggable, Become):
|
||||||
# Connection
|
# Connection
|
||||||
_gather_facts = FieldAttribute(isa='string', default='smart')
|
_gather_facts = FieldAttribute(isa='string', default='smart')
|
||||||
_hosts = FieldAttribute(isa='list', default=[], required=True)
|
_hosts = FieldAttribute(isa='list', default=[], required=True)
|
||||||
_name = FieldAttribute(isa='string', default='<no name specified>')
|
_name = FieldAttribute(isa='string', default='')
|
||||||
|
|
||||||
# Variable Attributes
|
# Variable Attributes
|
||||||
_vars_files = FieldAttribute(isa='list', default=[])
|
_vars_files = FieldAttribute(isa='list', default=[])
|
||||||
|
|
Loading…
Reference in a new issue