Forward port local-arm-futex patch to poky morty HEAD
[AGL/meta-agl.git] / meta-app-framework / recipes-extended / shadow / files / 0001-useradd-copy-extended-attributes-of-home-native.patch
1 From 008637fc8bd7f601eb6554d572bba025613913b7 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Jos=C3=A9=20Bollo?= <jose.bollo@iot.bzh>
3 Date: Wed, 8 Mar 2017 14:10:10 +0100
4 Subject: [PATCH] useradd: copy extended attributes of home (native)
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 The Home directory wasn't getting the extended attributes
10 of /etc/skel. This patch fixes that issue and adds the copy
11 of the extended attributes of the root of the home directory.
12
13 Change-Id: Ib6836e1b18c4c7f73e02c1f1fc9558dc749ba9da
14 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
15 ---
16  src/useradd.c | 6 ++++++
17  1 file changed, 6 insertions(+)
18
19 diff --git a/src/useradd.c b/src/useradd.c
20 index 4c418af..8ba8af6 100644
21 --- a/src/useradd.c
22 +++ b/src/useradd.c
23 @@ -55,6 +55,9 @@
24  #include <sys/stat.h>
25  #include <sys/types.h>
26  #include <time.h>
27 +#ifdef WITH_ATTR
28 +#include <attr/libattr.h>
29 +#endif
30  #include "chkname.h"
31  #include "defines.h"
32  #include "faillog.h"
33 @@ -1950,6 +1953,9 @@ static void create_home (void)
34         chown (user_home, user_id, user_gid);
35         chmod (user_home,
36                0777 & ~getdef_num ("UMASK", GETDEF_DEFAULT_UMASK));
37 +#ifdef WITH_ATTR
38 +       attr_copy_file (def_template, user_home, NULL, NULL);
39 +#endif
40         home_added = true;
41  #ifdef WITH_AUDIT
42         audit_logger (AUDIT_ADD_USER, Prog,
43 -- 
44 2.9.3
45