summaryrefslogtreecommitdiff
path: root/roles/tools/tasks/main.yml
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@fretlink.com>2018-11-10 13:15:21 +0100
committerIsmaël Bouya <ismael.bouya@fretlink.com>2018-11-10 13:15:21 +0100
commiteac82f289d503c5bcc0d1e04784d027745d371c6 (patch)
treeaadec0ce4c45bb38fd35f5183cad49e8da7ea4bf /roles/tools/tasks/main.yml
parentae3ee40122874b15242821249e101147f573b508 (diff)
downloadAnsible-eac82f289d503c5bcc0d1e04784d027745d371c6.tar.gz
Ansible-eac82f289d503c5bcc0d1e04784d027745d371c6.tar.zst
Ansible-eac82f289d503c5bcc0d1e04784d027745d371c6.zip
Replace synchronize wiht copy
Diffstat (limited to 'roles/tools/tasks/main.yml')
-rw-r--r--roles/tools/tasks/main.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/roles/tools/tasks/main.yml b/roles/tools/tasks/main.yml
index 745a08f..9d23619 100644
--- a/roles/tools/tasks/main.yml
+++ b/roles/tools/tasks/main.yml
@@ -25,6 +25,7 @@
25 dest: $XDG_CONFIG_HOME/vim/vimrc 25 dest: $XDG_CONFIG_HOME/vim/vimrc
26 notify: 26 notify:
27 - run PlugInstall 27 - run PlugInstall
28- meta: flush_handlers
28- name: tmux config file 29- name: tmux config file
29 template: 30 template:
30 src: tmux.conf.j2 31 src: tmux.conf.j2
@@ -34,18 +35,18 @@
34 src: youtube-viewer.conf.j2 35 src: youtube-viewer.conf.j2
35 dest: $XDG_CONFIG_HOME/youtube-viewer/youtube-viewer.conf 36 dest: $XDG_CONFIG_HOME/youtube-viewer/youtube-viewer.conf
36- name: remind config file 37- name: remind config file
37 synchronize: 38 copy:
38 recursive: yes 39 src: "remind/commands/{{ item }}"
39 archive: no 40 dest: "$XDG_CONFIG_HOME/remind/{{ item }}"
40 checksum: yes 41 loop:
41 src: remind/commands/ 42 - work
42 dest: /$XDG_CONFIG_HOME/remind/
43- name: remind service file 43- name: remind service file
44 copy: 44 copy:
45 src: remind/remind@.service 45 src: remind/remind@.service
46 dest: $XDG_CONFIG_HOME/systemd/user/ 46 dest: $XDG_CONFIG_HOME/systemd/user/
47 notify: 47 notify:
48 - reload systemd 48 - reload systemd
49- meta: flush_handlers
49- name: Clone password store 50- name: Clone password store
50 git: 51 git:
51 dest: "$XDG_DATA_HOME/pass" 52 dest: "$XDG_DATA_HOME/pass"