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
a18f4b62
Commit
a18f4b62
authored
May 09, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'devel' of
https://github.com/jjshoe/ansible
into jjshoe-devel
parents
9b9b4d50
a34478d6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
library/files/copy
+2
-0
library/files/lineinfile
+2
-0
library/files/replace
+2
-0
No files found.
library/files/copy
View file @
a18f4b62
...
...
@@ -204,6 +204,8 @@ def main():
os
.
unlink
(
dest
)
open
(
dest
,
'w'
)
.
close
()
if
validate
:
if
"
%
s"
not
in
validate
:
module
.
fail_json
(
msg
=
"validate must contain
%%
s:
%
s"
%
(
validate
))
(
rc
,
out
,
err
)
=
module
.
run_command
(
validate
%
src
)
if
rc
!=
0
:
module
.
fail_json
(
msg
=
"failed to validate: rc:
%
s error:
%
s"
%
(
rc
,
err
))
...
...
library/files/lineinfile
View file @
a18f4b62
...
...
@@ -154,6 +154,8 @@ def write_changes(module,lines,dest):
validate
=
module
.
params
.
get
(
'validate'
,
None
)
valid
=
not
validate
if
validate
:
if
"
%
s"
not
in
validate
:
module
.
fail_json
(
msg
=
"validate must contain
%%
s:
%
s"
%
(
validate
))
(
rc
,
out
,
err
)
=
module
.
run_command
(
validate
%
tmpfile
)
valid
=
rc
==
0
if
rc
!=
0
:
...
...
library/files/replace
View file @
a18f4b62
...
...
@@ -90,6 +90,8 @@ def write_changes(module,contents,dest):
validate
=
module
.
params
.
get
(
'validate'
,
None
)
valid
=
not
validate
if
validate
:
if
"
%
s"
not
in
validate
:
module
.
fail_json
(
msg
=
"validate must contain
%%
s:
%
s"
%
(
validate
))
(
rc
,
out
,
err
)
=
module
.
run_command
(
validate
%
tmpfile
)
valid
=
rc
==
0
if
rc
!=
0
:
...
...
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