corrected syntax

Always quote template expression brackets when they start a value.
This commit is contained in:
rene
2022-02-17 17:07:16 +01:00
parent d919f08699
commit d42cef52a9

View File

@@ -17,8 +17,8 @@
- name: users | rene | clone remote repos - name: users | rene | clone remote repos
git: git:
repo: {{ item.repo }} repo: '{{ item.repo }}''
dest: /home/rene/{{ item.dir }} dest: '/home/rene/{{ item.dir }}''
with_items: with_items:
- {repo: 'https://gitlab.social.my-wan.de/rene/dotfiles.git', dir: 'dotfiles'} - {repo: 'https://gitlab.social.my-wan.de/rene/dotfiles.git', dir: 'dotfiles'}
- {repo: 'https://github.com/romkatv/powerlevel10k.git', dir: 'powerlevel10k'} - {repo: 'https://github.com/romkatv/powerlevel10k.git', dir: 'powerlevel10k'}