From f3dab068fce37270e5e4e1a00e5a44e30f00baf7 Mon Sep 17 00:00:00 2001 From: Cameron Katri Date: Sun, 2 May 2021 16:00:07 -0400 Subject: Recommit everything, add chpass, improve history (except for a few files that git-filter-repo dislikes for some reason [_secure_path.c and login_cap.h]) --- pw/pw_conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pw/pw_conf.c') diff --git a/pw/pw_conf.c b/pw/pw_conf.c index b9b80f8..be05164 100644 --- a/pw/pw_conf.c +++ b/pw/pw_conf.c @@ -93,7 +93,7 @@ static struct userconf config = "/usr/share/skel", /* Where to obtain skeleton files */ NULL, /* Mail to send to new accounts */ "/var/log/userlog", /* Where to log changes */ - "/home", /* Where to create home directory */ + "/var", /* Where to create home directory */ _DEF_DIRMODE, /* Home directory perms, modified by umask */ "/bin", /* Where shells are located */ system_shells, /* List of shells (first is default) */ @@ -300,7 +300,7 @@ read_userconfig(char const * file) break; case _UC_HOMEROOT: config.home = (q == NULL || !boolean_val(q, 1)) - ? "/home" : newstr(q); + ? "/var" : newstr(q); break; case _UC_HOMEMODE: modeset = setmode(q); -- cgit v1.2.3