auth: actually, that's how FreeBSD does it...

This commit is contained in:
Franco Fichtner 2015-06-08 11:44:55 +02:00
parent 06881b90fe
commit cb8fb01b9c

View File

@ -441,7 +441,7 @@ function local_user_set(&$user)
/* determine add or mod */
if (($userattrs[0] != $user['name']) || (!strncmp($pwread, 'pw:', 3))) {
$user_op = 'useradd -m -k /etc/skel -o';
$user_op = 'useradd -m -k /usr/share/skel -o';
} else {
$user_op = 'usermod';
}