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
f7cff27f
Commit
f7cff27f
authored
Feb 26, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drastically simply playbook syntax
parent
136d8fa3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
30 deletions
+18
-30
examples/playbook.yml
+11
-25
lib/ansible/playbook.py
+7
-5
No files found.
examples/playbook.yml
View file @
f7cff27f
-
pattern
:
'
*'
hosts
:
/etc/ansible/hosts
tasks
:
-
do
:
-
configure template & module variables for future template calls
-
setup a=2 b=3 c=4
-
do
:
-
copy a file from the local disk to the remote
-
copy src=/srv/a dest=/srv/b
-
name
:
config step
action
:
setup a=2 b=3 c=4
-
name
:
copy comand
action
:
copy src=/srv/a dest=/srv/b
notify
:
-
restart apache
-
do
:
-
template from local file template.j2 to remote location /srv/file.out
-
template src=/srv/template.j2 dest=/srv/file.out
-
name
:
template step
action
:
template src=/srv/template.j2 dest=/srv/file.out
notify
:
-
restart apache
-
quack like a duck
-
do
:
-
if running as non-root whne you template, you should specify the MD file (1)
-
setup a=3 b=4 c=5 metadata=/tmp/metadata.json
-
do
:
-
if running as non-root when you template, you should specify the MD file (2)
-
template src=/srv/template.j2 dest=/srv/file2.out metadata=/tmp/metadata.json
-
do
:
-
call something that will fail just to demo failure counts and such
-
command /bin/false
-
name
:
execute bin
false
comment
:
call something that will fail just to demo failure counts and such
action
:
command /bin/false
handlers
:
-
do
:
-
restart apache
-
service name=httpd ensure=restarted
-
do
:
-
quack like a duck
-
command /bin/true
-
name
:
restart apache
action
:
service name=httpd ensure=restarted
lib/ansible/playbook.py
View file @
f7cff27f
...
...
@@ -113,9 +113,11 @@ class PlayBook(object):
# load the module name and parameters from the task
# entry
instructions
=
task
[
'do'
]
(
comment
,
module_details
)
=
instructions
tokens
=
shlex
.
split
(
module_details
)
name
=
task
[
'name'
]
action
=
task
[
'action'
]
comment
=
task
.
get
(
'comment'
,
''
)
tokens
=
shlex
.
split
(
action
)
module_name
=
tokens
[
0
]
module_args
=
tokens
[
1
:]
...
...
@@ -126,9 +128,9 @@ class PlayBook(object):
if
self
.
verbose
:
if
not
conditional
:
print
"
\n
TASK [
%
s]"
%
(
comment
)
print
"
\n
TASK [
%
s]"
%
(
name
)
else
:
print
"
\n
NOTIFIED [
%
s]"
%
(
comment
)
print
"
\n
NOTIFIED [
%
s]"
%
(
name
)
# load up an appropriate ansible runner to
# run the task in parallel
...
...
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