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
f5c6457d
Commit
f5c6457d
authored
May 14, 2012
by
Seth Vidal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure private_key_file is hooked up in playbooks, too
parent
622405c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
lib/ansible/playbook.py
+4
-0
No files found.
lib/ansible/playbook.py
View file @
f5c6457d
...
...
@@ -56,6 +56,7 @@ class PlayBook(object):
sudo_pass
=
C
.
DEFAULT_SUDO_PASS
,
remote_port
=
C
.
DEFAULT_REMOTE_PORT
,
transport
=
C
.
DEFAULT_TRANSPORT
,
private_key_file
=
C
.
DEFAULT_PRIVATE_KEY_FILE
,
debug
=
False
,
callbacks
=
None
,
runner_callbacks
=
None
,
...
...
@@ -103,6 +104,7 @@ class PlayBook(object):
self
.
sudo_user
=
sudo_user
self
.
extra_vars
=
extra_vars
self
.
global_vars
=
{}
self
.
private_key_file
=
private_key_file
self
.
inventory
=
ansible
.
inventory
.
Inventory
(
host_list
)
...
...
@@ -283,6 +285,7 @@ class PlayBook(object):
remote_pass
=
self
.
remote_pass
,
module_path
=
self
.
module_path
,
timeout
=
self
.
timeout
,
remote_user
=
remote_user
,
remote_port
=
port
,
module_vars
=
vars
,
private_key_file
=
self
.
private_key_file
,
setup_cache
=
SETUP_CACHE
,
basedir
=
self
.
basedir
,
conditional
=
only_if
,
callbacks
=
self
.
runner_callbacks
,
debug
=
self
.
debug
,
sudo
=
sudo
,
sudo_user
=
sudo_user
,
...
...
@@ -474,6 +477,7 @@ class PlayBook(object):
forks
=
self
.
forks
,
module_path
=
self
.
module_path
,
timeout
=
self
.
timeout
,
remote_user
=
user
,
remote_pass
=
self
.
remote_pass
,
remote_port
=
port
,
private_key_file
=
self
.
private_key_file
,
setup_cache
=
SETUP_CACHE
,
callbacks
=
self
.
runner_callbacks
,
sudo
=
sudo
,
sudo_user
=
sudo_user
,
debug
=
self
.
debug
,
transport
=
transport
,
...
...
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