mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
removed become_pass as it should not be used
This commit is contained in:
parent
24fd4faa28
commit
d67c9858a9
1 changed files with 0 additions and 12 deletions
|
@ -30,7 +30,6 @@ class Become:
|
||||||
_become = FieldAttribute(isa='bool')
|
_become = FieldAttribute(isa='bool')
|
||||||
_become_method = FieldAttribute(isa='string')
|
_become_method = FieldAttribute(isa='string')
|
||||||
_become_user = FieldAttribute(isa='string')
|
_become_user = FieldAttribute(isa='string')
|
||||||
_become_pass = FieldAttribute(isa='string')
|
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
return super(Become, self).__init__()
|
return super(Become, self).__init__()
|
||||||
|
@ -128,14 +127,3 @@ class Become:
|
||||||
return self._get_parent_attribute('become_user')
|
return self._get_parent_attribute('become_user')
|
||||||
else:
|
else:
|
||||||
return self._attributes['become_user']
|
return self._attributes['become_user']
|
||||||
|
|
||||||
def _get_attr_become_password(self):
|
|
||||||
'''
|
|
||||||
Override for the 'become_password' getattr fetcher, used from Base.
|
|
||||||
'''
|
|
||||||
if hasattr(self, '_get_parent_attribute'):
|
|
||||||
return self._get_parent_attribute('become_password')
|
|
||||||
else:
|
|
||||||
return self._attributes['become_password']
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue