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
af9651f0
Commit
af9651f0
authored
May 29, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #420 from bradobro/fix_no_varfiles
Test for play.vars_files == None, avoiding nasty traceback.
parents
b9fd948c
32b9ea68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
lib/ansible/playbook/__init__.py
+2
-1
No files found.
lib/ansible/playbook/__init__.py
View file @
af9651f0
...
@@ -280,8 +280,9 @@ class PlayBook(object):
...
@@ -280,8 +280,9 @@ class PlayBook(object):
rc
=
self
.
_do_setup_step
(
play
)
# pattern, vars, user, port, sudo, sudo_user, transport, None)
rc
=
self
.
_do_setup_step
(
play
)
# pattern, vars, user, port, sudo, sudo_user, transport, None)
# now with that data, handle contentional variable file imports!
# now with that data, handle contentional variable file imports!
if
len
(
play
.
vars_files
)
>
0
:
if
play
.
vars_files
and
len
(
play
.
vars_files
)
>
0
:
rc
=
self
.
_do_setup_step
(
play
,
play
.
vars_files
)
rc
=
self
.
_do_setup_step
(
play
,
play
.
vars_files
)
#else: warn "You have a vars_files section but didn't state any vars files??
# run all the top level tasks, these get run on every node
# run all the top level tasks, these get run on every node
for
task
in
play
.
tasks
():
for
task
in
play
.
tasks
():
...
...
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