summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/rc.yml
blob: 424801b9016fdce646a08d14e177028736544cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: Installation des fichiers rc root
  copy: src={{ item.name }} dest=/root/{{ item.dest }} mode=644
  with_items:
    - { name: 'bashrc', dest: '.bashrc' }
    - { name: 'emacs.rc', dest: '.emacs' }
    - { name: 'zshrc', dest: '.zshrc' }
    - { name: 'tmux.conf', dest: '.tmux.conf' }

- name: Installation des fichiers rc squelette
  copy: src={{ item.name }} dest=/etc/skel/{{ item.dest }} mode=644
  with_items:
    - { name: 'bashrc', dest: '.bashrc' }
    - { name: 'emacs.rc', dest: '.emacs' }
    - { name: 'zshrc', dest: '.zshrc' }
    - { name: 'tmux.conf', dest: '.tmux.conf' }