return ret;
}
+static void
+set_path(const struct passwd* pw)
+{
+ int r;
+ if (pw->pw_uid)
+ r = logindefs_setenv("PATH", "ENV_PATH", _PATH_DEFPATH);
+
+ else if ((r = logindefs_setenv("PATH", "ENV_ROOTPATH", NULL)) != 0)
+ r = logindefs_setenv("PATH", "ENV_SUPATH", _PATH_DEFPATH_ROOT);
+
+ if (r != 0)
+ err (EXIT_FAILURE, _("failed to set PATH"));
+}
+
/* Update `environ' for the new shell based on PW, with SHELL being
the value for the SHELL environment variable. */
xsetenv ("SHELL", shell);
xsetenv ("USER", pw->pw_name);
xsetenv ("LOGNAME", pw->pw_name);
- xsetenv ("PATH", (pw->pw_uid
- ? getlogindefs_str ("PATH", _PATH_DEFPATH)
- : getlogindefs_str ("SUPATH", _PATH_DEFPATH_ROOT)));
+ set_path(pw);
}
else
{
xsetenv ("HOME", pw->pw_dir);
xsetenv ("SHELL", shell);
if (getlogindefs_bool ("ALWAYS_SET_PATH", 0))
- xsetenv ("PATH", (pw->pw_uid
- ? getlogindefs_str ("PATH",
- _PATH_DEFPATH)
- : getlogindefs_str ("SUPATH",
- _PATH_DEFPATH_ROOT)));
+ set_path(pw);
else
{
char const *path = getenv ("PATH");