You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- hosts: all
|
|
tasks:
|
|
|
|
- name: List dotfiles
|
|
shell: ls -A ~/.dotfiles | grep '^\.'
|
|
register: ls_dotfiles
|
|
|
|
- name: Symlink dotfiles
|
|
file:
|
|
src: ~/.dotfiles/{{ item }}
|
|
dest: ~/{{ item }}
|
|
state: link
|
|
loop: "{{ ls_dotfiles.stdout_lines | difference(['.git', '.gitmodules']) }}"
|