Add more config files to the base role.
This commit is contained in:
@@ -1,6 +1,33 @@
|
||||
- include_role:
|
||||
name: per_user
|
||||
|
||||
- name: Configure gitconfig
|
||||
copy:
|
||||
src: "files/{{ item.src }}"
|
||||
dest: "{{ account_homedir.stdout }}/{{ item.dest }}"
|
||||
mode: 0600
|
||||
owner: "{{ account_name.stdout }}"
|
||||
group: "{{ group_name.stdout }}"
|
||||
when: gitconfig is defined
|
||||
loop:
|
||||
- src: "{{ gitconfig }}"
|
||||
dest: .gitconfig
|
||||
|
||||
- name: Copy files
|
||||
copy:
|
||||
src: "files/{{ item.src }}"
|
||||
dest: "{{ account_homedir.stdout }}/{{ item.dest }}"
|
||||
mode: 0600
|
||||
owner: "{{ account_name.stdout }}"
|
||||
group: "{{ group_name.stdout }}"
|
||||
loop:
|
||||
- src: ignore
|
||||
dest: .ignore
|
||||
- src: tmux.conf
|
||||
dest: .tmux.conf
|
||||
- src: gitignore_global
|
||||
dest: .gitignore_global
|
||||
|
||||
- import_tasks: tasks/peruser_freebsd.yaml
|
||||
when: 'os_flavor == "freebsd"'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user