Fix UID/GID setting
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-04-15 14:16:00 +02:00
parent d964a9954c
commit 9498f7f924
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 2 deletions

View File

@ -24,8 +24,8 @@
set_fact:
git_user_info:
{
"USER_GID": "{{ getent_passwd['git'][1] }}",
"USER_UID": "{{ getent_passwd['git'][2] }}",
"USER_UID": "{{ getent_passwd['git'][1] }}",
"USER_GID": "{{ getent_passwd['git'][2] }}",
}
- name: Store gitea git user uid/guid in config.env dictionary