ansible: fix bin role syntax for consistency
This commit is contained in:
parent
3d626c4ee0
commit
8ea1cd8bc5
1 changed files with 8 additions and 7 deletions
|
@ -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/*"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue