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
200ecbc3
Commit
200ecbc3
authored
Nov 06, 2014
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9510 from bcoca/ssh_agent_wo_keyfile
fixed ssh fix, bad test case but it should work now
parents
219332bd
22ef8308
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
lib/ansible/runner/connection.py
+5
-5
No files found.
lib/ansible/runner/connection.py
View file @
200ecbc3
...
...
@@ -20,6 +20,7 @@
import
os
import
stat
import
errno
from
ansible
import
utils
from
ansible.errors
import
AnsibleError
...
...
@@ -36,15 +37,14 @@ class Connector(object):
raise
AnsibleError
(
"unsupported connection type:
%
s"
%
transport
)
if
private_key_file
:
# If private key is readable by user other than owner, flag an error
st
=
None
try
:
st
=
os
.
stat
(
private_key_file
)
except
IOError
,
e
:
if
e
.
errno
==
errno
.
ENOENT
:
# file is missing, might be agent
st
=
{
'st_mode'
:
False
}
else
:
except
(
IOError
,
OSError
),
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
# file is missing, might be agent
raise
(
e
)
if
st
.
st_mode
&
(
stat
.
S_IRGRP
|
stat
.
S_IROTH
):
if
st
is
not
None
and
st
.
st_mode
&
(
stat
.
S_IRGRP
|
stat
.
S_IROTH
):
raise
AnsibleError
(
"private_key_file (
%
s) is group-readable or world-readable and thus insecure - "
"you will probably get an SSH failure"
%
(
private_key_file
,))
...
...
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