mirror of
https://github.com/fscotto/infra.git
synced 2026-09-27 11:02:47 +00:00
13 lines
366 B
YAML
13 lines
366 B
YAML
---
|
|
- name: Ensure personal workstation directories exist
|
|
tags: [dotfiles, dotfiles:workstation]
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
state: directory
|
|
owner: "{{ username }}"
|
|
group: "{{ user_group }}"
|
|
mode: "{{ item.mode }}"
|
|
loop: "{{ personal_workstation_directories | default([]) }}"
|
|
loop_control:
|
|
label: "{{ item.path }}"
|