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
f044fc34
Commit
f044fc34
authored
12 years ago
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When using roles, or other includes, the path to DWIM inside is the path of the task include
file.
parent
f88d13ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
examples/playbooks/roles/foo/handlers/main.yml
+4
-0
lib/ansible/playbook/play.py
+7
-3
No files found.
examples/playbooks/roles/foo/handlers/main.yml
View file @
f044fc34
...
...
@@ -3,4 +3,8 @@
-
name
:
blippy
shell
:
echo notifier called, and the value of x is '{{ x }}'
# within a role, it's possible to include other task files as well. By default, we
# can reference files in the same directory without doing anything special:
-
include
:
other.yml
This diff is collapsed.
Click to expand it.
lib/ansible/playbook/play.py
View file @
f044fc34
...
...
@@ -223,9 +223,13 @@ class Play(object):
for
t
in
tokens
[
1
:]:
(
k
,
v
)
=
t
.
split
(
"="
,
1
)
mv
[
k
]
=
utils
.
template
(
self
.
basedir
,
v
,
mv
)
include_file
=
utils
.
template
(
self
.
basedir
,
tokens
[
0
],
mv
)
data
=
utils
.
parse_yaml_from_file
(
utils
.
path_dwim
(
self
.
basedir
,
include_file
))
results
+=
self
.
_load_tasks
(
data
,
mv
,
included_additional_conditions
,
original_file
=
include_file
)
dirname
=
self
.
basedir
if
original_file
:
dirname
=
os
.
path
.
dirname
(
original_file
)
include_file
=
utils
.
template
(
dirname
,
tokens
[
0
],
mv
)
include_filename
=
utils
.
path_dwim
(
dirname
,
include_file
)
data
=
utils
.
parse_yaml_from_file
(
include_filename
)
results
+=
self
.
_load_tasks
(
data
,
mv
,
included_additional_conditions
,
original_file
=
include_filename
)
elif
type
(
x
)
==
dict
:
results
.
append
(
Task
(
self
,
x
,
module_vars
=
task_vars
,
additional_conditions
=
additional_conditions
))
else
:
...
...
This diff is collapsed.
Click to expand it.
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