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
a9787290
Commit
a9787290
authored
Sep 23, 2013
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in the delimiter change for the assemble module
parent
bcf9a75d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
CHANGELOG.md
+1
-0
library/files/assemble
+9
-9
No files found.
CHANGELOG.md
View file @
a9787290
...
...
@@ -19,6 +19,7 @@ New modules:
Misc changes:
*
Added a
`delimiter`
field to the assemble module.
*
Added
`ansible_env`
to the list of facts returned by the setup module.
*
Added
`state=touch`
to the file module, which functions similarly to the command-line version of
`touch`
.
*
Added a -vvvv level, which will show SSH client debugging information in the event of a failure.
...
...
library/files/assemble
View file @
a9787290
...
...
@@ -76,14 +76,14 @@ EXAMPLES = '''
# ===========================================
# Support method
def
assemble_from_fragments
(
src_path
,
delimiter
=
''
):
def
assemble_from_fragments
(
src_path
,
delimiter
=
None
):
''' assemble a file from a directory of fragments '''
tmpfd
,
temp_path
=
tempfile
.
mkstemp
()
tmp
=
os
.
fdopen
(
tmpfd
,
'w'
)
delimit_me
=
False
for
f
in
sorted
(
os
.
listdir
(
src_path
)):
fragment
=
"
%
s/
%
s"
%
(
src_path
,
f
)
if
delimit_me
:
if
delimit_me
and
delimiter
:
tmp
.
write
(
delimiter
)
if
os
.
path
.
isfile
(
fragment
):
tmp
.
write
(
file
(
fragment
)
.
read
())
...
...
@@ -107,13 +107,13 @@ def main():
add_file_common_args
=
True
)
changed
=
False
pathmd5
=
None
destmd5
=
None
src
=
os
.
path
.
expanduser
(
module
.
params
[
'src'
])
dest
=
os
.
path
.
expanduser
(
module
.
params
[
'dest'
])
backup
=
module
.
params
[
'backup'
]
delimiter
=
module
.
params
[
'delimiter'
]
changed
=
False
pathmd5
=
None
destmd5
=
None
src
=
os
.
path
.
expanduser
(
module
.
params
[
'src'
])
dest
=
os
.
path
.
expanduser
(
module
.
params
[
'dest'
])
backup
=
module
.
params
[
'backup'
]
delimiter
=
module
.
params
[
'delimiter'
]
if
not
os
.
path
.
exists
(
src
):
module
.
fail_json
(
msg
=
"Source (
%
s) does not exist"
%
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