create git user to run the gitea

This commit is contained in:
Ibrahim Mkusa 2024-09-21 18:31:16 -04:00
parent 8c04b25cfa
commit ad94498ce0

View File

@ -95,8 +95,16 @@
- name: display results of gpg verification for go binary
ansible.builtin.debug:
var: gpg_result
ignore_errors: true
- name: creates user to run gitea
ansible.builtin.user:
name: git
shell: /bin/bash
system: true
comment: "Gitea repo manager"
state: present