From jobol at nonadev.net Tue Mar 7 15:29:24 2017 From: jobol at nonadev.net (jobol at nonadev.net) Date: Tue, 7 Mar 2017 16:29:24 +0100 Subject: [Pkg-shadow-commits] [PATCH] useradd: copy extended attributes of home Message-ID: <20170307152924.12083-1-jobol@nonadev.net> From: Jos? Bollo The Home directory wasn't getting the extended attributes of /etc/skel. This patch fixes that issue and adds the copy of the extended attributes of the root of the home directory. Change-Id: Icd633f7c6c494efd2a30cb8f04c306f749ad0c3b Signed-off-by: Jos? Bollo --- src/useradd.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/useradd.c b/src/useradd.c index a8a1f76..8aefb9c 100644 --- a/src/useradd.c +++ b/src/useradd.c @@ -52,6 +52,9 @@ #include #include #include +#ifdef WITH_ATTR +#include +#endif #include "chkname.h" #include "defines.h" #include "faillog.h" @@ -1915,6 +1918,9 @@ static void create_home (void) chown (user_home, user_id, user_gid); chmod (user_home, 0777 & ~getdef_num ("UMASK", GETDEF_DEFAULT_UMASK)); +#ifdef WITH_ATTR + attr_copy_file (def_template, user_home, NULL, NULL); +#endif home_added = true; #ifdef WITH_AUDIT audit_logger (AUDIT_ADD_USER, Prog, -- 2.9.3