From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXRQ8-0003rm-Ky for guix-patches@gnu.org; Tue, 18 Jul 2017 08:16:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXRQ2-0000Db-NX for guix-patches@gnu.org; Tue, 18 Jul 2017 08:16:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42793) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dXRQ2-0000DW-JU for guix-patches@gnu.org; Tue, 18 Jul 2017 08:16:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dXRQ2-0000MI-DJ for guix-patches@gnu.org; Tue, 18 Jul 2017 08:16:02 -0400 Subject: [bug#27753] [PATCH] system: Add 'newuidmap' and 'newgidmap' to %SETUID-PROGRAMS. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXRPP-0003oA-UM for guix-patches@gnu.org; Tue, 18 Jul 2017 08:15:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXRPK-0008H3-C0 for guix-patches@gnu.org; Tue, 18 Jul 2017 08:15:23 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:33588 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dXRPK-0008Fq-48 for guix-patches@gnu.org; Tue, 18 Jul 2017 08:15:18 -0400 From: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Tue, 18 Jul 2017 20:06:12 +0800 Message-Id: <20170718120612.3685-1-iyzsong@member.fsf.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27753@debbugs.gnu.org Cc: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= * gnu/system.scm (%setuid-programs): Add 'newuidmap' and 'newgidmap'. --- gnu/system.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/system.scm b/gnu/system.scm index bffbee7fd..998bd6839 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -718,6 +718,8 @@ use 'plain-file' instead~%") (let ((shadow (@ (gnu packages admin) shadow))) (list (file-append shadow "/bin/passwd") (file-append shadow "/bin/su") + (file-append shadow "/bin/newuidmap") + (file-append shadow "/bin/newgidmap") (file-append inetutils "/bin/ping") (file-append inetutils "/bin/ping6") (file-append sudo "/bin/sudo") -- 2.12.2