From b5153ffa5ea7fe2fd116ab191c558b5eb4226906 Mon Sep 17 00:00:00 2001 From: Alexander Kurakin Date: Fri, 27 Jan 2023 18:17:27 +0300 Subject: acct-user/*: remove ACCT_USER_HOME_OWNER if it is equal to default `acct-user.eclass`'s documentation [says](https://devmanual.gentoo.org/eclass-reference/acct-user.eclass/index.html): ``` ACCT_USER_HOME_OWNER The ownership to use for the home directory, in chown ([user][:group]) syntax. Defaults to the newly created user, and its primary group. ``` ``` ACCT_USER_GROUPS (REQUIRED) List of groups the user should belong to. This must be a bash array. The first group specified is the user's primary group, while the remaining groups (if any) become supplementary groups. ``` So we can remove in `acct-user/user/user-0.ebuild`: ``` ACCT_USER_HOME_OWNER="user" ``` Moreover if we have: ``` ACCT_USER_GROUPS=( primary_group group2 ) ``` , we can remove ``` ACCT_USER_HOME_OWNER="user:primary_group" ``` Signed-off-by: Alexander Kurakin Closes: https://github.com/gentoo/gentoo/pull/29214 Signed-off-by: Conrad Kostecki --- acct-user/unifi/unifi-0-r1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'acct-user/unifi/unifi-0-r1.ebuild') diff --git a/acct-user/unifi/unifi-0-r1.ebuild b/acct-user/unifi/unifi-0-r1.ebuild index b5370b3f510d..6e7e3dae218f 100644 --- a/acct-user/unifi/unifi-0-r1.ebuild +++ b/acct-user/unifi/unifi-0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2020 Gentoo Authors +# Copyright 2019-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -9,7 +9,6 @@ DESCRIPTION="A user for the UniFi Controller" ACCT_USER_GROUPS=( "unifi" ) ACCT_USER_HOME="/var/lib/unifi" -ACCT_USER_HOME_OWNER="unifi:unifi" ACCT_USER_ID="113" acct-user_add_deps -- cgit v1.2.3-18-g5258