diff options
author | Max Khon <fjoe@FreeBSD.org> | 2003-01-21 10:14:47 +0000 |
---|---|---|
committer | Max Khon <fjoe@FreeBSD.org> | 2003-01-21 10:14:47 +0000 |
commit | d6024a30765b17705f20698ba551ca30d74ae395 (patch) | |
tree | a820c4d6f8f06bda1fac3694c355df58f5f020ba /news/husky-base/pkg-install | |
parent | Update proc-1.050-7. (diff) |
do not double leading slash in created user's home directory
Diffstat (limited to 'news/husky-base/pkg-install')
-rw-r--r-- | news/husky-base/pkg-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/news/husky-base/pkg-install b/news/husky-base/pkg-install index a86d220abae0..e929b1314a40 100644 --- a/news/husky-base/pkg-install +++ b/news/husky-base/pkg-install @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/news/husky-base/Attic/pkg-install,v 1.1 2003-01-05 19:34:24 fjoe Exp $ +# $FreeBSD: /tmp/pcvs/ports/news/husky-base/Attic/pkg-install,v 1.2 2003-01-21 10:14:47 fjoe Exp $ # PKG_PREFIX=${PKG_PREFIX:=/usr/local} @@ -58,7 +58,7 @@ if [ x"$2" = xPRE-INSTALL ]; then echo "You already have a user \"${USER}\", so I will use it." else if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d /${PKG_PREFIX}/fido \ + -d ${PKG_PREFIX}/fido \ -c "Fido System" then echo "Added user \"${USER}\"." |