1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 03:32:12 +00:00

Revert "Need to create root directory before user"

This reverts commit a089778d0b.
This commit is contained in:
Aidan Fitzgerald 2019-03-04 21:32:57 -05:00
parent a089778d0b
commit 4ad50b113d

View file

@ -1,12 +1,5 @@
# Prepare to install Gitea: create user and directory structure
- name: Ensure Gitea root directory exists
file:
name: "{{ gitea_root_directory }}"
state: directory
tags:
- pre-install
- name: Ensure group gitea exists
group:
name: gitea
@ -23,14 +16,6 @@
tags:
- pre-install
- name: Ensure Gitea root directory is owned by user gitea:gitea
file:
name: "{{ gitea_root_directory }}"
owner: gitea
group: gitea
tags:
- pre-install
- name: Create Gitea directory structure
file:
path: "{{ gitea_root_directory }}/{{ item }}"