From aab3381887c45d63f4df2d75d6e76084360c725d Mon Sep 17 00:00:00 2001 From: Tom David--Broglio Date: Thu, 9 Nov 2023 15:59:45 +0100 Subject: [PATCH] webapps/nextcloud: fix missing gid --- CHANGELOG.md | 3 ++- webapps/nextcloud/tasks/user.yml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 496b806b..845631cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/webapps/nextcloud/tasks/user.yml b/webapps/nextcloud/tasks/user.yml index f24f28c5..ab00f8ba 100644 --- a/webapps/nextcloud/tasks/user.yml +++ b/webapps/nextcloud/tasks/user.yml @@ -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