Gentoo Archives: gentoo-dev

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: "Ulrich Müller" <ulm@g.o>
Subject: [gentoo-dev] [PATCH 5/9] webapp.eclass: Use UID 0 instead of root
Date: Sun, 27 Mar 2022 07:29:37
Message-Id: 20220327072735.9719-6-ulm@gentoo.org
In Reply to: [gentoo-dev] [PATCH 0/9] eclass: Use UID 0 instead of root and other fixes by "Ulrich Müller"
1 Bug: https://bugs.gentoo.org/595908
2 Signed-off-by: Ulrich Müller <ulm@g.o>
3 ---
4 eclass/webapp.eclass | 4 ++--
5 1 file changed, 2 insertions(+), 2 deletions(-)
6
7 diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass
8 index 3c0dfc811ac6..1efe4e66b6a9 100644
9 --- a/eclass/webapp.eclass
10 +++ b/eclass/webapp.eclass
11 @@ -1,4 +1,4 @@
12 -# Copyright 1999-2021 Gentoo Authors
13 +# Copyright 1999-2022 Gentoo Authors
14 # Distributed under the terms of the GNU General Public License v2
15
16 # @ECLASS: webapp.eclass
17 @@ -457,7 +457,7 @@ webapp_src_install() {
18 chmod -R g-s "${D}/"
19
20 keepdir "${MY_PERSISTDIR}"
21 - fowners "root:0" "${MY_PERSISTDIR}"
22 + fowners "0:0" "${MY_PERSISTDIR}"
23 fperms 755 "${MY_PERSISTDIR}"
24 }
25
26 --
27 2.35.1