1
1
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_gitea.git synced 2024-08-16 11:39:50 +02:00

Update gitea and create shell variable

The current gitea version is updated to 1.7.5.

And now you are able to customize the shell of your gitea user.
[Issue 14](https://github.com/thomas-maurice/ansible-role-gitea/issues/14)
This commit is contained in:
Lilian Roller 2019-04-09 13:04:29 +02:00 committed by Thomas Maurice
parent b812f562b0
commit 609a47de72
2 changed files with 3 additions and 2 deletions

View file

@ -1,9 +1,10 @@
---
gitea_version: "1.7.4"
gitea_version: "1.7.5"
gitea_app_name: "Gitea"
gitea_user: "gitea"
gitea_home: "/var/lib/gitea"
gitea_shell: "/bin/false"
gitea_user_repo_limit: -1

View file

@ -4,4 +4,4 @@
name: "{{ gitea_user }}"
comment: "Gitea user"
home: "{{ gitea_home }}"
shell: "/bin/false"
shell: "{{ gitea_shell }}"