Merge pull request #1612 from dhozac/play-vars-list

Make parameterized playbook includes work with vars as a list
This commit is contained in:
Michael DeHaan 2012-11-13 04:45:58 -08:00
commit 7a48525357
3 changed files with 15 additions and 3 deletions

View file

@ -166,7 +166,10 @@ class PlayBook(object):
for p in plays:
if 'vars' not in p:
p['vars'] = {}
p['vars'].update(incvars)
if isinstance(p['vars'], dict):
p['vars'].update(incvars)
elif isinstance(p['vars'], list):
p['vars'].extend([dict(k=v) for k,v in incvars.iteritems()])
accumulated_plays.extend(plays)
play_basedirs.extend(basedirs)

View file

@ -114,6 +114,7 @@ class TestPlaybook(unittest.TestCase):
def _run(self, test_playbook, host_list='test/ansible_hosts'):
''' run a module and get the localhost results '''
# This ensures tests are independent of eachother
global EVENTS
ansible.playbook.SETUP_CACHE.clear()
EVENTS = []
@ -202,7 +203,8 @@ class TestPlaybook(unittest.TestCase):
assert utils.jsonify(expected, format=True) == utils.jsonify(actual,format=True)
assert len(EVENTS) == 60
print "len(EVENTS) = %d" % len(EVENTS)
assert len(EVENTS) == 26
def test_includes(self):
pb = os.path.join(self.test_dir, 'playbook-includer.yml')
@ -215,7 +217,7 @@ class TestPlaybook(unittest.TestCase):
"localhost": {
"changed": 0,
"failures": 0,
"ok": 5,
"ok": 10,
"skipped": 0,
"unreachable": 0
}

View file

@ -3,3 +3,10 @@
gather_facts: False
tasks:
- action: debug msg="$variable"
- hosts: all
vars:
- ugly: var
gather_facts: False
tasks:
- action: debug msg="$variable"