mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
fix with_items loop
This commit is contained in:
parent
96940be8b2
commit
9558b42bfd
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@
|
|||
|
||||
- name: Create Gitea directory structure
|
||||
file:
|
||||
path: "{{ gitea_root_directory }}/{{item.item}}"
|
||||
path: "{{ gitea_root_directory }}/{{ item }}"
|
||||
state: directory
|
||||
owner: gitea
|
||||
group: gitea
|
||||
|
@ -28,7 +28,7 @@
|
|||
|
||||
- name: Make directories data, indexers, and log writable
|
||||
file:
|
||||
path: "{{ gitea_root_directory }}/{{item.item}}"
|
||||
path: "{{ gitea_root_directory }}/{{ item }}"
|
||||
mode: 0750
|
||||
with_items:
|
||||
- data
|
||||
|
|
Loading…
Reference in a new issue