46 lines
925 B
YAML
46 lines
925 B
YAML
---
|
|
- name: Setup system level git user
|
|
become: true
|
|
user:
|
|
name: git
|
|
comment: gitea user
|
|
create_home: true
|
|
home: /home/git
|
|
group: git
|
|
system: true
|
|
generate_ssh_key: true
|
|
ssh_key_bits: 2048
|
|
ssh_key_file: .ssh/id_rsa
|
|
state: present
|
|
|
|
- name: Create gitea application directories
|
|
become: true
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
owner: git
|
|
group: git
|
|
with_items:
|
|
- /app
|
|
- /app/gitea
|
|
- /var/lib/gitea
|
|
|
|
- name: Get uid/guid of the git user
|
|
become: true
|
|
getent:
|
|
database: passwd
|
|
key: git
|
|
split: ":"
|
|
|
|
- name: Prepare git user information dictionary
|
|
set_fact:
|
|
git_user_info:
|
|
{
|
|
"USER_UID": "{{ getent_passwd['git'][1] }}",
|
|
"USER_GID": "{{ getent_passwd['git'][2] }}",
|
|
}
|
|
|
|
- name: Store gitea git user uid/guid in config.env dictionary
|
|
set_fact:
|
|
config: "{{ config | update_env(git_user_info) }}"
|