webapps/nextcloud: fix missing gid
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2632|5|2627|6|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/386//ansiblelint">Evolix » ansible-roles » unstable #386</a>
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
Tom David--Broglio 2023-11-09 15:59:45 +01:00
parent 009de62e28
commit aab3381887
2 changed files with 3 additions and 1 deletions

View file

@ -15,7 +15,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* Preliminary work for php83
* nagios-nrpe: add check_sentinel for monitoring Redis Sentinel
* webapps/nextcloud Added var nextcloud_user_uid to enforce uid for nextcloud user
* webapps/nextcloud: Added var nextcloud_user_uid to enforce uid for nextcloud user
### Changed
@ -30,6 +30,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evoadmin-web: Fix PHP version for Bookworm
* Add php-fpm82 to LDAP when relevant
* nagios: fix default file to monitor for check_clamav_db
* webapps/nextcloud: fix missing gid
### Removed

View file

@ -13,6 +13,7 @@
group: "{{ nextcloud_user | mandatory }}"
home: "{{ nextcloud_home | mandatory }}"
uid: "{{ nextcloud_user_uid | mandatory }}"
gid: "{{ nextcloud_user_uid | mandatory }}"
shell: '/bin/bash'
create_home: True
state: present