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
3f17a392
Commit
3f17a392
authored
Jun 09, 2013
by
Chris Church
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set current play/task to None for callback context when finished running the current play/task.
parent
6f8e9c1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
lib/ansible/playbook/__init__.py
+8
-3
No files found.
lib/ansible/playbook/__init__.py
View file @
3f17a392
...
...
@@ -213,10 +213,7 @@ class PlayBook(object):
self
.
callbacks
.
on_start
()
for
(
play_ds
,
play_basedir
)
in
zip
(
self
.
playbook
,
self
.
play_basedirs
):
play
=
Play
(
self
,
play_ds
,
play_basedir
)
assert
play
is
not
None
ansible
.
callbacks
.
set_play
(
self
.
callbacks
,
play
)
ansible
.
callbacks
.
set_play
(
self
.
runner_callbacks
,
play
)
matched_tags
,
unmatched_tags
=
play
.
compare_tags
(
self
.
only_tags
)
matched_tags_all
=
matched_tags_all
|
matched_tags
...
...
@@ -242,8 +239,12 @@ class PlayBook(object):
raise
errors
.
AnsibleError
(
msg
%
(
unknown
,
unmatched
))
for
play
in
plays
:
ansible
.
callbacks
.
set_play
(
self
.
callbacks
,
play
)
ansible
.
callbacks
.
set_play
(
self
.
runner_callbacks
,
play
)
if
not
self
.
_run_play
(
play
):
break
ansible
.
callbacks
.
set_play
(
self
.
callbacks
,
None
)
ansible
.
callbacks
.
set_play
(
self
.
runner_callbacks
,
None
)
# summarize the results
results
=
{}
...
...
@@ -325,6 +326,8 @@ class PlayBook(object):
self
.
callbacks
.
on_task_start
(
template
(
play
.
basedir
,
task
.
name
,
task
.
module_vars
,
lookup_fatal
=
False
),
is_handler
)
if
hasattr
(
self
.
callbacks
,
'skip_task'
)
and
self
.
callbacks
.
skip_task
:
ansible
.
callbacks
.
set_task
(
self
.
callbacks
,
None
)
ansible
.
callbacks
.
set_task
(
self
.
runner_callbacks
,
None
)
return
True
# load up an appropriate ansible runner to run the task in parallel
...
...
@@ -365,6 +368,8 @@ class PlayBook(object):
for
handler_name
in
task
.
notify
:
self
.
_flag_handler
(
play
,
template
(
play
.
basedir
,
handler_name
,
task
.
module_vars
),
host
)
ansible
.
callbacks
.
set_task
(
self
.
callbacks
,
None
)
ansible
.
callbacks
.
set_task
(
self
.
runner_callbacks
,
None
)
return
hosts_remaining
# *****************************************************
...
...
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