machine_setup/ansible/roles/media/tasks/peruser.yaml

32 lines
732 B
YAML
Raw Normal View History

- include_role:
name: per_user
- name: Create directories
when: install_graphics
file:
name: "{{ account_homedir.stdout }}/{{ item }}"
state: directory
mode: 0700
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"
loop:
- ".config/mpv"
- name: Copy files
when: install_graphics
copy:
src: "files/{{ item.src }}"
dest: "{{ account_homedir.stdout }}/{{ item.dest }}"
mode: 0600
owner: "{{ account_name.stdout }}"
group: "{{ group_name.stdout }}"
loop:
- src: mpv.conf
dest: .config/mpv/mpv.conf
- import_tasks: tasks/peruser_freebsd.yaml
when: 'os_flavor == "freebsd"'
- import_tasks: tasks/peruser_linux.yaml
when: 'os_flavor == "linux"'