diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-01-21 18:14:47 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-01-21 18:14:47 +0800 |
commit | 4add5029af5a70312f7776f51b9a4f01d6100a4e (patch) | |
tree | 53f45903ef4acaca4f87ea126b64b9c32dde68eb /news | |
parent | 0a400ccb1d3701ab5f33583750aa1ef46e92e910 (diff) | |
download | freebsd-ports-gnome-4add5029af5a70312f7776f51b9a4f01d6100a4e.tar.gz freebsd-ports-gnome-4add5029af5a70312f7776f51b9a4f01d6100a4e.tar.zst freebsd-ports-gnome-4add5029af5a70312f7776f51b9a4f01d6100a4e.zip |
do not double leading slash in created user's home directory
Diffstat (limited to 'news')
-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}\"." |