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
7124504c
Commit
7124504c
authored
Jul 21, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Incorporate extra vars when templating vars_files
Fixes #11377
parent
b8b20600
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
lib/ansible/vars/__init__.py
+5
-1
No files found.
lib/ansible/vars/__init__.py
View file @
7124504c
...
...
@@ -188,7 +188,11 @@ class VariableManager:
if
play
:
all_vars
=
self
.
_combine_vars
(
all_vars
,
play
.
get_vars
())
templar
=
Templar
(
loader
=
loader
,
variables
=
all_vars
)
# create a set of temporary vars here, which incorporate any extra vars
# which may have been specified, so we can properly template vars_files
temp_vars
=
self
.
_combine_vars
(
all_vars
,
self
.
extra_vars
)
templar
=
Templar
(
loader
=
loader
,
variables
=
temp_vars
)
for
vars_file_item
in
play
.
get_vars_files
():
try
:
...
...
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