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
94d7ceb2
Commit
94d7ceb2
authored
May 14, 2012
by
Seth Vidal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --private-key option and related infrastructure to make paramiko work
with a private key file - not just an agent or pw
parent
776fe43d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
4 deletions
+10
-4
lib/ansible/connection.py
+1
-1
lib/ansible/constants.py
+1
-0
lib/ansible/runner.py
+6
-3
lib/ansible/utils.py
+2
-0
No files found.
lib/ansible/connection.py
View file @
94d7ceb2
...
...
@@ -87,8 +87,8 @@ class ParamikoConnection(object):
username
=
user
,
allow_agent
=
True
,
look_for_keys
=
True
,
key_filename
=
self
.
runner
.
private_key_file
,
password
=
self
.
runner
.
remote_pass
,
# key_filename=None, # TODO: allow this to be passed in
timeout
=
self
.
runner
.
timeout
,
port
=
self
.
port
)
...
...
lib/ansible/constants.py
View file @
94d7ceb2
...
...
@@ -34,6 +34,7 @@ DEFAULT_TIMEOUT = 10
DEFAULT_POLL_INTERVAL
=
15
DEFAULT_REMOTE_USER
=
'root'
DEFAULT_REMOTE_PASS
=
None
DEFAULT_PRIVATE_KEY_FILE
=
None
DEFAULT_SUDO_PASS
=
None
DEFAULT_SUDO_USER
=
'root'
DEFAULT_REMOTE_PORT
=
22
...
...
lib/ansible/runner.py
View file @
94d7ceb2
...
...
@@ -76,9 +76,10 @@ class Runner(object):
forks
=
C
.
DEFAULT_FORKS
,
timeout
=
C
.
DEFAULT_TIMEOUT
,
pattern
=
C
.
DEFAULT_PATTERN
,
remote_user
=
C
.
DEFAULT_REMOTE_USER
,
remote_pass
=
C
.
DEFAULT_REMOTE_PASS
,
remote_port
=
C
.
DEFAULT_REMOTE_PORT
,
sudo_pass
=
C
.
DEFAULT_SUDO_PASS
,
background
=
0
,
basedir
=
None
,
setup_cache
=
None
,
transport
=
C
.
DEFAULT_TRANSPORT
,
conditional
=
'True'
,
callbacks
=
None
,
debug
=
False
,
sudo
=
False
,
sudo_user
=
C
.
DEFAULT_SUDO_USER
,
private_key_file
=
C
.
DEFAULT_PRIVATE_KEY_FILE
,
sudo_pass
=
C
.
DEFAULT_SUDO_PASS
,
background
=
0
,
basedir
=
None
,
setup_cache
=
None
,
transport
=
C
.
DEFAULT_TRANSPORT
,
conditional
=
'True'
,
callbacks
=
None
,
debug
=
False
,
sudo
=
False
,
sudo_user
=
C
.
DEFAULT_SUDO_USER
,
module_vars
=
None
,
is_playbook
=
False
,
inventory
=
None
):
"""
...
...
@@ -92,6 +93,7 @@ class Runner(object):
remote_user : connect as this remote username
remote_pass : supply this password (if not using keys)
remote_port : use this default remote port (if not set by the inventory system)
private_key_file : use this private key as your auth key
sudo_user : If you want to sudo to a user other than root.
sudo_pass : sudo password if using sudo and sudo requires a password
background : run asynchronously with a cap of this many # of seconds (if not 0)
...
...
@@ -142,6 +144,7 @@ class Runner(object):
self
.
remote_user
=
remote_user
self
.
remote_pass
=
remote_pass
self
.
remote_port
=
remote_port
self
.
private_key_file
=
private_key_file
self
.
background
=
background
self
.
basedir
=
basedir
self
.
sudo
=
sudo
...
...
lib/ansible/utils.py
View file @
94d7ceb2
...
...
@@ -318,6 +318,8 @@ def base_parser(constants=C, usage="", output_opts=False, runas_opts=False, asyn
default
=
constants
.
DEFAULT_HOST_LIST
)
parser
.
add_option
(
'-k'
,
'--ask-pass'
,
default
=
False
,
dest
=
'ask_pass'
,
action
=
'store_true'
,
help
=
'ask for SSH password'
)
parser
.
add_option
(
'--private-key'
,
default
=
None
,
dest
=
'private_key_file'
,
help
=
'use this file to authenticate the connection'
)
parser
.
add_option
(
'-K'
,
'--ask-sudo-pass'
,
default
=
False
,
dest
=
'ask_sudo_pass'
,
action
=
'store_true'
,
help
=
'ask for sudo password'
)
parser
.
add_option
(
'-M'
,
'--module-path'
,
dest
=
'module_path'
,
...
...
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