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
state: directory
- name: Deploy local commands
file:
src: "{{ item }}"
dest: "~/.local/bin/{{ item | basename }}"
dest: ~/.local/bin/{{ item | basename }}
state: link
force: yes
with_fileglob:
- ./*
- "{{ role_path }}/files/*"