mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Properly quote the username to support usernames with spaces (#53420)
This commit is contained in:
@@ -612,7 +612,7 @@ class Connection(ConnectionBase):
|
||||
if user:
|
||||
self._add_args(
|
||||
b_command,
|
||||
(b"-o", b"User=" + to_bytes(self._play_context.remote_user, errors='surrogate_or_strict')),
|
||||
(b"-o", b'User="%s"' % to_bytes(self._play_context.remote_user, errors='surrogate_or_strict')),
|
||||
u"ANSIBLE_REMOTE_USER/remote_user/ansible_user/user/-u set"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user