mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Revert "added setting of ansible_ssh_user to current user as backwards compatibilty issue"
scope was wrong, this var should not be 'reset' here.
This reverts commit c271c0eb04
.
This commit is contained in:
parent
9c24f88eca
commit
226c7f4c7b
1 changed files with 0 additions and 7 deletions
|
@ -26,9 +26,6 @@ import random
|
||||||
import re
|
import re
|
||||||
import string
|
import string
|
||||||
|
|
||||||
from pwd import getpwuid
|
|
||||||
from os import geteuid
|
|
||||||
|
|
||||||
from ansible.compat.six import iteritems, string_types
|
from ansible.compat.six import iteritems, string_types
|
||||||
from ansible import constants as C
|
from ansible import constants as C
|
||||||
from ansible.errors import AnsibleError
|
from ansible.errors import AnsibleError
|
||||||
|
@ -482,7 +479,3 @@ class PlayContext(Base):
|
||||||
for prop, varnames in MAGIC_VARIABLE_MAPPING.items():
|
for prop, varnames in MAGIC_VARIABLE_MAPPING.items():
|
||||||
if special_var in varnames:
|
if special_var in varnames:
|
||||||
variables[special_var] = getattr(self, prop)
|
variables[special_var] = getattr(self, prop)
|
||||||
|
|
||||||
# for backwards compat
|
|
||||||
if variables['ansible_ssh_user'] is None:
|
|
||||||
variables['ansible_ssh_user'] = getpwuid(geteuid())[0]
|
|
||||||
|
|
Loading…
Reference in a new issue