summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2005-07-31 08:25:53 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2005-07-31 08:25:53 +0000
commit9d69c14abcc027101e21bd211b68a2bd3c1bfab7 (patch)
tree59c8313a3b9ed322b1539029a659f323b1787ff6
parent6e05933ec84aed45da569d77c45bad732e5dc5a0 (diff)
downloadpw-darwin-9d69c14abcc027101e21bd211b68a2bd3c1bfab7.tar.gz
pw-darwin-9d69c14abcc027101e21bd211b68a2bd3c1bfab7.tar.zst
pw-darwin-9d69c14abcc027101e21bd211b68a2bd3c1bfab7.zip
Change /home symbolic link, so it will point to usr/home instead of /usr/home.
Previous symlink was confusing: # cd /jails/virtual_system_1/home # realpath . /usr/home ...and slower. OK'ed by: rwatson, phk
-rw-r--r--pw/pw_user.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index 5fd3671..6db509a 100644
--- a/pw/pw_user.c
+++ b/pw/pw_user.c
@@ -183,7 +183,11 @@ pw_user(struct userconf * cnf, int mode, struct cargs * args)
strncat(dbuf, cnf->home, MAXPATHLEN-5);
if (mkdir(dbuf, 0755) != -1 || errno == EEXIST) {
chown(dbuf, 0, 0);
- symlink(dbuf, cnf->home);
+ /*
+ * Skip first "/" and create symlink:
+ * /home -> usr/home
+ */
+ symlink(dbuf+1, cnf->home);
}
/* If this falls, fall back to old method */
}