aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorjedgar <jedgar@FreeBSD.org>2000-09-21 09:55:15 +0800
committerjedgar <jedgar@FreeBSD.org>2000-09-21 09:55:15 +0800
commit0268801787758c2cf27145e487ddb18c8fb157f9 (patch)
treebe48e9baa4289facf8e2d99eaace7a0d150b583a /mail
parent8b2607d94161c033e63477e3a2151951831867b3 (diff)
downloadfreebsd-ports-gnome-0268801787758c2cf27145e487ddb18c8fb157f9.tar.gz
freebsd-ports-gnome-0268801787758c2cf27145e487ddb18c8fb157f9.tar.zst
freebsd-ports-gnome-0268801787758c2cf27145e487ddb18c8fb157f9.zip
- Fix the comment field of the added user (MySQL Daemon -> Mailman User)
- Bump PORTREVISION PR: 21426 Submitted by: Nick Hibma <n_hibma@qubesoft.com>
Diffstat (limited to 'mail')
-rw-r--r--mail/mailman/Makefile1
-rw-r--r--mail/mailman/files/configure.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/mailman/Makefile b/mail/mailman/Makefile
index ce164f599db5..0cfd6ba048d0 100644
--- a/mail/mailman/Makefile
+++ b/mail/mailman/Makefile
@@ -7,6 +7,7 @@
PORTNAME= mailman
PORTVERSION= 2.0b5
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://download.sourceforge.net/mailman/
DISTNAME= mailman-2.0beta5
diff --git a/mail/mailman/files/configure.sh b/mail/mailman/files/configure.sh
index c7e1eeb4ecf7..0f496080dd94 100644
--- a/mail/mailman/files/configure.sh
+++ b/mail/mailman/files/configure.sh
@@ -25,7 +25,7 @@ if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
- -d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
+ -d ${DB_DIR} -s /sbin/nologin -c "Mailman User"
then
echo "Added user \"${USER}\"."
else