This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
git.autonomic.zone/deploy.d/plays/predeploy.yml

48 lines
901 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: Get uid/guid of the git user
become: true
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
become: true
file:
path: "{{ item }}"
state: directory
owner: git
group: git
with_items:
- /app
- /app/gitea