Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
868819f9
Commit
868819f9
authored
Oct 09, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure shlex split is returning properly encoded strings
Fixes #12676
parent
59d655c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
lib/ansible/plugins/connection/ssh.py
+2
-1
No files found.
lib/ansible/plugins/connection/ssh.py
View file @
868819f9
...
...
@@ -33,6 +33,7 @@ from ansible import constants as C
from
ansible.errors
import
AnsibleError
,
AnsibleConnectionFailure
,
AnsibleFileNotFound
from
ansible.plugins.connection
import
ConnectionBase
from
ansible.utils.path
import
unfrackpath
,
makedirs_safe
from
ansible.utils.unicode
import
to_bytes
,
to_unicode
SSHPASS_AVAILABLE
=
None
...
...
@@ -101,7 +102,7 @@ class Connection(ConnectionBase):
list ['-o', 'Foo=1', '-o', 'Bar=foo bar'] that can be added to
the argument list. The list will not contain any empty elements.
"""
return
[
x
.
strip
()
for
x
in
shlex
.
split
(
argstring
)
if
x
.
strip
()]
return
[
to_unicode
(
x
.
strip
())
for
x
in
shlex
.
split
(
to_bytes
(
argstring
)
)
if
x
.
strip
()]
def
_add_args
(
self
,
explanation
,
args
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment