aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorleeym <leeym@FreeBSD.org>2005-02-14 11:51:45 +0800
committerleeym <leeym@FreeBSD.org>2005-02-14 11:51:45 +0800
commit73094655b8bae081e6a632d77bd368b096ed7bb7 (patch)
tree4bb57ddc92e9f71ab8c0f94804321b2890af802f /security
parentc9a531ef1c67236c3a2bad9e6ac0d9a3f6d129a8 (diff)
downloadfreebsd-ports-gnome-73094655b8bae081e6a632d77bd368b096ed7bb7.tar.gz
freebsd-ports-gnome-73094655b8bae081e6a632d77bd368b096ed7bb7.tar.zst
freebsd-ports-gnome-73094655b8bae081e6a632d77bd368b096ed7bb7.zip
- correct the arguments of pw groupadd
Noticed by: kris
Diffstat (limited to 'security')
-rw-r--r--security/amavisd-new/files/INSTALL.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/amavisd-new/files/INSTALL.tmpl b/security/amavisd-new/files/INSTALL.tmpl
index c91bbfc8e940..276fc401077f 100644
--- a/security/amavisd-new/files/INSTALL.tmpl
+++ b/security/amavisd-new/files/INSTALL.tmpl
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $FreeBSD: /tmp/pcvs/ports/security/amavisd-new/files/Attic/INSTALL.tmpl,v 1.5 2005-02-13 17:35:35 leeym Exp $
+# $FreeBSD: /tmp/pcvs/ports/security/amavisd-new/files/Attic/INSTALL.tmpl,v 1.6 2005-02-14 03:51:45 leeym Exp $
#
USER=%%AMAVISUSER%%
@@ -13,7 +13,7 @@ if [ "$2" = "PRE-INSTALL" ]; then
if /usr/sbin/pw groupshow "${GROUP}" 2>/dev/null; then
echo "You already have a group \"${GROUP}\", so I will use it."
else
- if /usr/sbin/pw groupadd ${GROUP} -h -g 110 -
+ if /usr/sbin/pw groupadd ${GROUP} -h - -g 110
then
echo "Added group \"${GROUP}\"."
else