---
- 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: Get uid/guid of the git user
getent:
database: passwd
key: git
split: ":"
- name: Store gitea git user uid/guid in config.env
set_fact:
config: "{{
config |
default({}) |
combine({'env':
'USER_GID': getent_passwd['git'][1],
'USER_UID': getent_passwd['git'][2],
})
}}"
- name: DEBUG -> Show me the config setup again
debug:
msg: "{{ config }}"
- name: Create extra application directories
file:
path: "{{ item }}"
state: directory
owner: git
with_items:
- /app
- /app/gitea