Adding run-parts style for pre and post useradd/del

Signed-off-by: ed neville <ed@s5h.net>
This commit is contained in:
ed
2020-03-12 21:14:57 +00:00
committed by Serge Hallyn
parent b2753b146a
commit 32cfa176f2
7 changed files with 140 additions and 5 deletions

View File

@@ -64,6 +64,7 @@
#include "prototypes.h"
#include "pwauth.h"
#include "pwio.h"
#include "run_part.h"
#ifdef SHADOWGRP
#include "sgroupio.h"
#endif
@@ -2318,6 +2319,11 @@ int main (int argc, char **argv)
(!user_id || (user_id <= uid_max && user_id >= uid_min));
#endif /* ENABLE_SUBIDS */
if (run_parts ("/etc/shadow-maint/useradd-pre.d", (char*)user_name,
"useradd")) {
exit(1);
}
#ifdef ACCT_TOOLS_SETUID
#ifdef USE_PAM
{
@@ -2530,6 +2536,11 @@ int main (int argc, char **argv)
}
#endif /* WITH_SELINUX */
if (run_parts ("/etc/shadow-maint/useradd-post.d", (char*)user_name,
"useradd")) {
exit(1);
}
nscd_flush_cache ("passwd");
nscd_flush_cache ("group");
sssd_flush_cache (SSSD_DB_PASSWD | SSSD_DB_GROUP);