ansible: fix bin role syntax for consistency

This commit is contained in:
Fernando Schauenburg 2020-12-17 19:40:54 +01:00
parent 3d626c4ee0
commit 8ea1cd8bc5

View file

@ -3,12 +3,13 @@
path: ~/.local/bin path: ~/.local/bin
state: directory state: directory
- name: Deploy local commands - name: Deploy local commands
file: file:
src: "{{ item }}" src: "{{ item }}"
dest: "~/.local/bin/{{ item | basename }}" dest: ~/.local/bin/{{ item | basename }}
state: link state: link
force: yes force: yes
with_fileglob: with_fileglob:
- ./* - "{{ role_path }}/files/*"