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
b36aa612
Commit
b36aa612
authored
12 years ago
by
Jan-Piet Mens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for RSA/DSA SSH host key detection in setup module for OS/X
s/<8spaces>/<4spaces>/g
parent
f41d3b9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
library/setup
+8
-2
No files found.
library/setup
View file @
b36aa612
...
...
@@ -104,8 +104,14 @@ class Facts(object):
self
.
facts
[
'distribution'
]
=
name
def
get_public_ssh_host_keys
(
self
):
dsa
=
get_file_content
(
'/etc/ssh/ssh_host_dsa_key.pub'
)
rsa
=
get_file_content
(
'/etc/ssh/ssh_host_rsa_key.pub'
)
dsa_filename
=
'/etc/ssh/ssh_host_dsa_key.pub'
rsa_filename
=
'/etc/ssh/ssh_host_rsa_key.pub'
if
self
.
facts
[
'system'
]
==
'Darwin'
:
dsa_filename
=
'/etc/ssh_host_dsa_key.pub'
rsa_filename
=
'/etc/ssh_host_rsa_key.pub'
dsa
=
get_file_content
(
dsa_filename
)
rsa
=
get_file_content
(
rsa_filename
)
if
dsa
is
None
:
dsa
=
'NA'
else
:
...
...
This diff is collapsed.
Click to expand it.
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