refactor: update directory creation tasks to use loop variable for clarity
Some checks failed
Python Lint Check / check-python (push) Waiting to run
Ansible Lint Check / check-ansible (push) Failing after 15s
Nix Format Check / check-format (push) Has been cancelled

This commit is contained in:
2025-03-12 14:35:29 +01:00
parent 8d2cbdacae
commit e935a7d571
4 changed files with 12 additions and 4 deletions

View File

@@ -8,12 +8,14 @@
- name: Create GoLink directories
ansible.builtin.file:
path: "{{ item }}"
path: "{{ golink_dir }}"
state: directory
mode: "0755"
loop:
- "{{ golink_data_dir }}"
- "{{ golink_service_dir }}"
loop_control:
loop_var: golink_dir
- name: Deploy GoLink docker-compose.yml
ansible.builtin.template: