vapier 14/07/31 10:21:05 Modified: fcaps.eclass Log: use 0 for the fallback group rather than "root" to avoid portability issues (e.g. BSDs that do not have a root group)
Revision Changes Path 1.10 eclass/fcaps.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/fcaps.eclass?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/fcaps.eclass?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/fcaps.eclass?r1=1.9&r2=1.10 Index: fcaps.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/fcaps.eclass,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- fcaps.eclass 11 Jul 2014 08:21:58 -0000 1.9 +++ fcaps.eclass 31 Jul 2014 10:21:05 -0000 1.10 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fcaps.eclass,v 1.9 2014/07/11 08:21:58 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fcaps.eclass,v 1.10 2014/07/31 10:21:05 vapier Exp $ # @ECLASS: fcaps.eclass # @MAINTAINER: @@ -73,14 +73,14 @@ # # If the system is unable to set capabilities, it will use the specified user, # group, and mode (presumably to make the binary set*id). The defaults there -# are root:root and 4711. Otherwise, the ownership and permissions will be +# are root:0 and 4711. Otherwise, the ownership and permissions will be # unchanged. fcaps() { debug-print-function ${FUNCNAME} "$@" # Process the user options first. local owner='root' - local group='root' + local group='0' local mode='4711' local caps_mode='711'
