mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Don't set a default on the _become FieldAttribute. Fixes #11136
This commit is contained in:
parent
74a537ede0
commit
f983557e7e
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ from ansible.playbook.attribute import Attribute, FieldAttribute
|
|||
class Become:
|
||||
|
||||
# Privlege escalation
|
||||
_become = FieldAttribute(isa='bool', default=False)
|
||||
_become = FieldAttribute(isa='bool')
|
||||
_become_method = FieldAttribute(isa='string')
|
||||
_become_user = FieldAttribute(isa='string')
|
||||
_become_pass = FieldAttribute(isa='string')
|
||||
|
|
Loading…
Reference in a new issue