Thanks for the suggestion but I already tried that and it results in a huge error:
`
Traceback (most recent call last):
File “/usr/local/Cellar/ansible/1.7.1/libexec/bin/ansible-playbook”, line 5, in
pkg_resources.run_script(‘ansible==1.7.1’, ‘ansible-playbook’)
File “/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py”, line 489, in run_script
self.require(requires)[0].run_script(script_name, ns)
File “/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py”, line 1207, in run_script
execfile(script_filename, namespace, namespace)
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/EGG-INFO/scripts/ansible-playbook”, line 309, in
sys.exit(main(sys.argv[1:]))
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/EGG-INFO/scripts/ansible-playbook”, line 249, in main
pb.run()
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/playbook/init.py”, line 339, in run
if not self._run_play(play):
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/playbook/init.py”, line 646, in _run_play
play.update_vars_files(all_hosts, vault_password=self.vault_password)
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/playbook/play.py”, line 698, in update_vars_files
self._update_vars_files_for_host(h, vault_password=vault_password)
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/playbook/play.py”, line 847, in _update_vars_files_for_host
filename2, filename3, filename4 = generate_filenames(host, inject, filename)
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/playbook/play.py”, line 775, in generate_filenames
filename4 = utils.path_dwim(self.basedir, filename3)
File “/usr/local/Cellar/ansible/1.7.1/lib/python2.7/site-packages/ansible-1.7.1-py2.7.egg/ansible/utils/init.py”, line 318, in path_dwim
if given.startswith(“/”):
AttributeError: ‘list’ object has no attribute ‘startswith’
`
I’m guessing that this is the most useful part of that error:
`
AttributeError: ‘list’ object has no attribute ‘startswith’
`
Out of curiosity, I wrapped each path string in the list with double quotes but it results in pretty much the same thing.