diff options
author | koitsu <koitsu@FreeBSD.org> | 2008-03-10 05:32:01 +0800 |
---|---|---|
committer | koitsu <koitsu@FreeBSD.org> | 2008-03-10 05:32:01 +0800 |
commit | 5cea22929884cd5eb27cf47b40d032e89ef2e783 (patch) | |
tree | d7bd3378ee7c3b105c2f1c7d24f587d38862ae70 /net-mgmt/cricket/files | |
parent | fcae36d2c604d1d2d5a4af7d545f22ab3435aa1b (diff) | |
download | freebsd-ports-gnome-5cea22929884cd5eb27cf47b40d032e89ef2e783.tar.gz freebsd-ports-gnome-5cea22929884cd5eb27cf47b40d032e89ef2e783.tar.zst freebsd-ports-gnome-5cea22929884cd5eb27cf47b40d032e89ef2e783.zip |
- Make arguments passed to "pw user add" match that of ports/UIDs.
Diffstat (limited to 'net-mgmt/cricket/files')
-rw-r--r-- | net-mgmt/cricket/files/pkg-install.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/cricket/files/pkg-install.in b/net-mgmt/cricket/files/pkg-install.in index 871a2dbc437a..80b2da52daa1 100644 --- a/net-mgmt/cricket/files/pkg-install.in +++ b/net-mgmt/cricket/files/pkg-install.in @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/net-mgmt/cricket/files/Attic/pkg-install.in,v 1.1 2005-08-29 15:10:43 vs Exp $ +# $FreeBSD: /tmp/pcvs/ports/net-mgmt/cricket/files/Attic/pkg-install.in,v 1.2 2008-03-09 21:32:01 koitsu Exp $ # GROUP=%%GROUP%% @@ -28,7 +28,7 @@ if /usr/sbin/pw user show "${USER}" 2>/dev/null; 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 /usr/local/www -s /bin/sh -c "WWW Administrator" + -d /usr/local/cricket -s /usr/sbin/nologin -c "Cricket Monitoring User" then echo "Added user \"${USER}\"." else |