mirror of
https://github.com/fscotto/infra.git
synced 2026-05-31 07:49:57 +00:00
12 lines
342 B
YAML
12 lines
342 B
YAML
---
|
|
- name: Copy common dotfiles
|
|
ansible.builtin.copy:
|
|
src: "{{ playbook_dir }}/../dotfiles/common/{{ item.src }}"
|
|
dest: "{{ user_home }}/{{ item.dest }}"
|
|
owner: "{{ username }}"
|
|
group: "{{ user_group }}"
|
|
mode: "{{ item.mode }}"
|
|
loop: "{{ common_dotfiles | default([]) }}"
|
|
loop_control:
|
|
label: "{{ item.dest }}"
|