1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

removed incorrect assumption on become user being set

This commit is contained in:
Brian Coca 2015-06-14 21:05:23 -04:00
parent ff15f374ad
commit a267f93c83

View file

@ -60,10 +60,6 @@ class Become:
self._detect_privilege_escalation_conflict(ds)
# Setting user implies setting become/sudo/su to true
if 'become_user' in ds and not ds.get('become', False):
ds['become'] = True
# Privilege escalation, backwards compatibility for sudo/su
if 'sudo' in ds or 'sudo_user' in ds:
ds['become_method'] = 'sudo'