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
946c37fd
Commit
946c37fd
authored
Apr 24, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10612 from sivel/sync-ssh-args
Add ability to specify using ssh_args in synchronize
parents
8574d40b
d5eb4df2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
lib/ansible/runner/action_plugins/synchronize.py
+5
-0
No files found.
lib/ansible/runner/action_plugins/synchronize.py
View file @
946c37fd
...
...
@@ -19,6 +19,7 @@
import
os.path
from
ansible
import
utils
from
ansible
import
constants
from
ansible.runner.return_data
import
ReturnData
import
ansible.utils.template
as
template
...
...
@@ -104,9 +105,11 @@ class ActionModule(object):
src
=
options
.
get
(
'src'
,
None
)
dest
=
options
.
get
(
'dest'
,
None
)
use_ssh_args
=
options
.
pop
(
'use_ssh_args'
,
None
)
src
=
template
.
template
(
self
.
runner
.
basedir
,
src
,
inject
)
dest
=
template
.
template
(
self
.
runner
.
basedir
,
dest
,
inject
)
use_ssh_args
=
template
.
template
(
self
.
runner
.
basedir
,
use_ssh_args
,
inject
)
try
:
options
[
'local_rsync_path'
]
=
inject
[
'ansible_rsync_path'
]
...
...
@@ -187,6 +190,8 @@ class ActionModule(object):
options
[
'dest'
]
=
dest
if
'mode'
in
options
:
del
options
[
'mode'
]
if
use_ssh_args
:
options
[
'ssh_args'
]
=
constants
.
ANSIBLE_SSH_ARGS
# Allow custom rsync path argument.
rsync_path
=
options
.
get
(
'rsync_path'
,
None
)
...
...
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