From cb8fb01b9c31105e7f4e300aa7e2c84e4e3cd7ee Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 8 Jun 2015 11:44:55 +0200 Subject: [PATCH] auth: actually, that's how FreeBSD does it... --- src/etc/inc/auth.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/auth.inc b/src/etc/inc/auth.inc index 9d0003e70..6512838ea 100644 --- a/src/etc/inc/auth.inc +++ b/src/etc/inc/auth.inc @@ -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'; }