mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
13 lines
358 B
YAML
13 lines
358 B
YAML
---
|
|
- name: Ensure workstation user directories exist
|
|
tags: [dotfiles, dotfiles:workstation]
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
state: directory
|
|
owner: "{{ username }}"
|
|
group: "{{ user_group }}"
|
|
mode: "{{ item.mode }}"
|
|
loop: "{{ workstation_user_directories | default([]) }}"
|
|
loop_control:
|
|
label: "{{ item.path }}"
|