2022-10-22 18:54:47 +00:00
|
|
|
- include_role:
|
|
|
|
name: per_user
|
|
|
|
|
2022-10-22 19:41:45 +00:00
|
|
|
- name: Configure zshrc additional imports
|
|
|
|
copy:
|
|
|
|
src: "files/zshrc_{{ item }}"
|
|
|
|
dest: "{{ account_homedir.stdout }}/.config/ansible_deploy/zshrc/{{ item }}.zsh"
|
|
|
|
mode: 0600
|
|
|
|
owner: "{{ account_name.stdout }}"
|
|
|
|
group: "{{ group_name.stdout }}"
|
|
|
|
loop:
|
|
|
|
- plainmacs
|
2022-10-22 18:54:47 +00:00
|
|
|
|
|
|
|
- import_tasks: tasks/peruser_freebsd.yaml
|
|
|
|
when: 'os_flavor == "freebsd"'
|
|
|
|
|
|
|
|
- import_tasks: tasks/peruser_linux.yaml
|
|
|
|
when: 'os_flavor == "linux"'
|