Commit f983557e by Matt Martz

Don't set a default on the _become FieldAttribute. Fixes #11136

parent 74a537ed
......@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment