mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-14 04:23:56 +00:00
21 lines
472 B
YAML
21 lines
472 B
YAML
|
---
|
||
|
- name: Prepare
|
||
|
hosts: all
|
||
|
tasks:
|
||
|
- name: Install docker python module
|
||
|
pip:
|
||
|
name: docker
|
||
|
|
||
|
- name: Create a dummy gitea config directory
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
state: directory
|
||
|
recurse: yes
|
||
|
with_items:
|
||
|
- "{{ gitea_data_directory }}/gitea/gitea/conf"
|
||
|
|
||
|
- name: Create a dummy gitea config file
|
||
|
file:
|
||
|
path: "{{ gitea_data_directory }}/gitea/gitea/conf/app.ini"
|
||
|
state: touch
|