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
d15fcf05
Commit
d15fcf05
authored
Oct 12, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug in the way temp vars were created for templating vars_files
Fixes #12711
parent
2c24fbbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
lib/ansible/vars/__init__.py
+1
-1
No files found.
lib/ansible/vars/__init__.py
View file @
d15fcf05
...
...
@@ -258,7 +258,7 @@ class VariableManager:
# create a set of temporary vars here, which incorporate the extra
# and magic vars so we can properly template the vars_files entries
temp_vars
=
combine_vars
(
all_vars
,
self
.
_extra_vars
)
temp_vars
=
combine_vars
(
all
_vars
,
magic_variables
)
temp_vars
=
combine_vars
(
temp
_vars
,
magic_variables
)
templar
=
Templar
(
loader
=
loader
,
variables
=
temp_vars
)
# we assume each item in the list is itself a list, as we
...
...
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