Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:master commit in: misc/install-xattr/
Date: Fri, 27 Jun 2014 12:26:18
Message-Id: 1403871988.be6c34290f1c5a0c4e52b03dc5f668046409a84a.blueness@gentoo
1 commit: be6c34290f1c5a0c4e52b03dc5f668046409a84a
2 Author: Jason Zaman <jason <AT> perfinion <DOT> com>
3 AuthorDate: Fri Jun 27 12:07:03 2014 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 27 12:26:28 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=be6c3429
7
8 misc/install-xattr: exclude trusted.* by default
9
10 trusted.* xattrs require the sys_admin capability
11 and should be excluded by default
12
13 Signed-off-by: Jason Zaman <jason <AT> perfinion.com>
14
15 ---
16 misc/install-xattr/install-xattr.c | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19 diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c
20 index f2157fd..805c0a4 100644
21 --- a/misc/install-xattr/install-xattr.c
22 +++ b/misc/install-xattr/install-xattr.c
23 @@ -251,7 +251,7 @@ main(int argc, char* argv[])
24
25 portage_xattr_exclude = getenv("PORTAGE_XATTR_EXCLUDE");
26 if (portage_xattr_exclude == NULL)
27 - exclude = xstrdup("security.* system.nfs4_acl");
28 + exclude = xstrdup("security.* trusted.* system.nfs4_acl");
29 else
30 exclude = xstrdup(portage_xattr_exclude);