aboutsummaryrefslogtreecommitdiffstats
path: root/mail/avenger/pkg-install
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2005-07-08 20:13:20 +0800
committerpav <pav@FreeBSD.org>2005-07-08 20:13:20 +0800
commit0c53827f11ea9e5a0196badecbff356227968313 (patch)
treeb27e16874874556f0517ca863e3752458afbc4a9 /mail/avenger/pkg-install
parent3fee8cd617788ec53f5c5b243bc082d9ccd250c2 (diff)
downloadfreebsd-ports-gnome-0c53827f11ea9e5a0196badecbff356227968313.tar.gz
freebsd-ports-gnome-0c53827f11ea9e5a0196badecbff356227968313.tar.zst
freebsd-ports-gnome-0c53827f11ea9e5a0196badecbff356227968313.zip
- Update to 0.6.5
- Take maintainership PR: ports/83077 Submitted by: David Mazieres <dm+bugs+avenger@mailavenger.org>
Diffstat (limited to 'mail/avenger/pkg-install')
-rw-r--r--mail/avenger/pkg-install6
1 files changed, 2 insertions, 4 deletions
diff --git a/mail/avenger/pkg-install b/mail/avenger/pkg-install
index 03780480e38b..5d77d7ed8312 100644
--- a/mail/avenger/pkg-install
+++ b/mail/avenger/pkg-install
@@ -6,8 +6,6 @@ fi
USER=avenger
GROUP=avenger
-UID=172
-GID=172
AVDIR=/var/spool/avenger
AVETC=${PKG_PREFIX}/etc/avenger
@@ -19,7 +17,7 @@ if [ "$2" = "PRE-INSTALL" ]; then
if ! ${PW} groupshow $GROUP >/dev/null 2>&1; then
echo -n "doesn't exist, adding... "
- if ${PW} groupadd $GROUP -g ${GID}; then
+ if ${PW} groupadd $GROUP; then
echo "success."
else
echo "FAILED!"
@@ -33,7 +31,7 @@ if [ "$2" = "PRE-INSTALL" ]; then
if ! ${PW} usershow $USER >/dev/null 2>&1; then
echo -n "doesn't exist, adding... "
- if ${PW} useradd $USER -u ${UID} -c 'Mail Avenger' -d "$AVDIR" -g $GROUP -s /sbin/nologin -h -; then
+ if ${PW} useradd $USER -c 'Mail Avenger' -d "$AVDIR" -g $GROUP -s /sbin/nologin -h -; then
echo "success."
else
echo "FAILED!"