From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 974411581F3 for ; Sun, 1 Dec 2024 11:54:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D61AE085B; Sun, 1 Dec 2024 11:54:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 720FAE0858 for ; Sun, 1 Dec 2024 11:54:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 118F6342F64 for ; Sun, 1 Dec 2024 11:54:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E2E91F42 for ; Sun, 1 Dec 2024 11:54:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1733053934.0207657e1e83d1945adb36bf58d50ae3c0804413.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: acct-user/nginx/ X-VCS-Repository: repo/gentoo X-VCS-Files: acct-user/nginx/metadata.xml acct-user/nginx/nginx-0-r2.ebuild X-VCS-Directories: acct-user/nginx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0207657e1e83d1945adb36bf58d50ae3c0804413 X-VCS-Branch: master Date: Sun, 1 Dec 2024 11:54:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aa91c508-5bbb-4b3b-89bd-9a0c498c858b X-Archives-Hash: 41b3ef8fceda32f6ec02cbb8c63ebdc6 commit: 0207657e1e83d1945adb36bf58d50ae3c0804413 Author: Paul Zander gmail com> AuthorDate: Fri Nov 8 15:34:24 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 11:52:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0207657e acct-user/nginx: add USE=mgraph Misses migration after acct-user got introduced. Introduced USE-flags needed for net-mail/mailgraph BannedEapiCommand 'gpasswd' banned in EAPI 7, used on line 81 'gpasswd -a apache mgraph' Signed-off-by: Paul Zander gmail.com> Signed-off-by: Sam James gentoo.org> acct-user/nginx/metadata.xml | 1 + acct-user/nginx/nginx-0-r2.ebuild | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/acct-user/nginx/metadata.xml b/acct-user/nginx/metadata.xml index d5e1b5439249..e2269995015a 100644 --- a/acct-user/nginx/metadata.xml +++ b/acct-user/nginx/metadata.xml @@ -4,5 +4,6 @@ Prepare group membership for www-apps/icingaweb2 + Prepare group membership for net-mail/mailgraph diff --git a/acct-user/nginx/nginx-0-r2.ebuild b/acct-user/nginx/nginx-0-r2.ebuild index 79087c812736..d3de2d164909 100644 --- a/acct-user/nginx/nginx-0-r2.ebuild +++ b/acct-user/nginx/nginx-0-r2.ebuild @@ -9,7 +9,7 @@ ACCT_USER_ID="82" ACCT_USER_GROUPS=( "nginx" ) ACCT_USER_HOME="/var/lib/nginx" -IUSE="icingaweb2" +IUSE="icingaweb2 mgraph" acct-user_add_deps @@ -18,9 +18,15 @@ RDEPEND+=" acct-group/icingacmd acct-group/icingaweb2 ) + mgraph? ( + acct-group/mgraph + ) " pkg_setup() { # www-apps/icingaweb2 use icingaweb2 && ACCT_USER_GROUPS+=( icingacmd icingaweb2 ) + + # net-mail/mailgraph + use mgraph && ACCT_USER_GROUPS+=( mgraph ) }