b4a2128e54
OBS-URL: https://build.opensuse.org/request/show/398913 OBS-URL: https://build.opensuse.org/package/show/Base:System/shadow?expand=0&rev=21
43 lines
859 B
Diff
43 lines
859 B
Diff
--- src/useradd.c
|
|
+++ src/useradd.c
|
|
@@ -1982,6 +1982,30 @@ static void create_mail (void)
|
|
}
|
|
|
|
/*
|
|
+ * call_script - call a script to do some work
|
|
+ *
|
|
+ * call_script calls a script for additional changes to the
|
|
+ * account.
|
|
+ */
|
|
+
|
|
+static void call_script (const char *user)
|
|
+{
|
|
+ const char *cmd;
|
|
+ const char *argv[3];
|
|
+ int status;
|
|
+
|
|
+ cmd = getdef_str ("USERADD_CMD");
|
|
+ if (NULL == cmd) {
|
|
+ return;
|
|
+ }
|
|
+ argv[0] = cmd;
|
|
+ argv[1] = user;
|
|
+ argv[2] = (char *)0;
|
|
+ (void) run_command (cmd, argv, NULL, &status);
|
|
+}
|
|
+
|
|
+
|
|
+/*
|
|
* main - useradd command
|
|
*/
|
|
int main (int argc, char **argv)
|
|
@@ -2242,6 +2266,7 @@ int main (int argc, char **argv)
|
|
nscd_flush_cache ("passwd");
|
|
nscd_flush_cache ("group");
|
|
|
|
+ call_script (user_name);
|
|
+
|
|
return E_SUCCESS;
|
|
}
|
|
-
|