add quotes
addressing: ERROR: Syntax Error while loading YAML script, /srv/web/infra/ansible/playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml Note: The error may actually appear before this position: line 11, column 19 - /srv/web/infra/ansible/vars/fedora-cloud.yml - {{ private }}/files/openstack/passwords.yml ^ We could be wrong, but this one looks like it might be an issue with missing quotes. Always quote template expression brackets when they start a value. For instance: with_items: - {{ foo }} Should be written as: with_items: - "{{ foo }}"
This commit is contained in:
parent
87163e62d3
commit
8072ce429d
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
vars_files:
|
||||
- /srv/web/infra/ansible/vars/global.yml
|
||||
- /srv/web/infra/ansible/vars/fedora-cloud.yml
|
||||
- {{ private }}/files/openstack/passwords.yml
|
||||
- "{{ private }}/files/openstack/passwords.yml"
|
||||
|
||||
tasks:
|
||||
- name: Set the hostname
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue