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
379e3188
Commit
379e3188
authored
Aug 18, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix check mode issues with copy module
Fixes #8639
parent
542f0712
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletions
+5
-1
lib/ansible/runner/action_plugins/copy.py
+2
-1
lib/ansible/utils/__init__.py
+2
-0
library/files/copy
+1
-0
No files found.
lib/ansible/runner/action_plugins/copy.py
View file @
379e3188
...
@@ -243,7 +243,8 @@ class ActionModule(object):
...
@@ -243,7 +243,8 @@ class ActionModule(object):
dest
=
dest
,
dest
=
dest
,
original_basename
=
source_rel
original_basename
=
source_rel
)
)
if
self
.
runner
.
noop_on_check
(
inject
):
new_module_args
[
'CHECKMODE'
]
=
True
if
self
.
runner
.
no_log
:
if
self
.
runner
.
no_log
:
new_module_args
[
'NO_LOG'
]
=
True
new_module_args
[
'NO_LOG'
]
=
True
...
...
lib/ansible/utils/__init__.py
View file @
379e3188
...
@@ -484,6 +484,8 @@ def merge_module_args(current_args, new_args):
...
@@ -484,6 +484,8 @@ def merge_module_args(current_args, new_args):
for
(
k
,
v
)
in
final_args
.
iteritems
():
for
(
k
,
v
)
in
final_args
.
iteritems
():
if
isinstance
(
v
,
basestring
):
if
isinstance
(
v
,
basestring
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
pipes
.
quote
(
v
),
module_args
)
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
pipes
.
quote
(
v
),
module_args
)
elif
isinstance
(
v
,
bool
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
str
(
v
),
module_args
)
return
module_args
.
strip
()
return
module_args
.
strip
()
def
parse_yaml
(
data
,
path_hint
=
None
):
def
parse_yaml
(
data
,
path_hint
=
None
):
...
...
library/files/copy
View file @
379e3188
...
@@ -145,6 +145,7 @@ def main():
...
@@ -145,6 +145,7 @@ def main():
directory_mode
=
dict
(
required
=
False
)
directory_mode
=
dict
(
required
=
False
)
),
),
add_file_common_args
=
True
,
add_file_common_args
=
True
,
supports_check_mode
=
True
,
)
)
src
=
os
.
path
.
expanduser
(
module
.
params
[
'src'
])
src
=
os
.
path
.
expanduser
(
module
.
params
[
'src'
])
...
...
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