Date: Tue, 30 Oct 2018 14:04:21 +0000 (UTC) From: Larry Rosenman <ler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483490 - in head/mail/dovecot: . files Message-ID: <201810301404.w9UE4LnB072213@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ler Date: Tue Oct 30 14:04:21 2018 New Revision: 483490 URL: https://svnweb.freebsd.org/changeset/ports/483490 Log: mail/dovcecot: fix thinko in previous update. Don't print config always PR: 232803 Submitted by: oleg@pcbtech.ru Modified: head/mail/dovecot/Makefile head/mail/dovecot/files/dovecot.in Modified: head/mail/dovecot/Makefile ============================================================================== --- head/mail/dovecot/Makefile Tue Oct 30 14:00:31 2018 (r483489) +++ head/mail/dovecot/Makefile Tue Oct 30 14:04:21 2018 (r483490) @@ -8,7 +8,7 @@ PORTNAME= dovecot PORTVERSION= 2.3.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail ipv6 MASTER_SITES= https://www.dovecot.org/releases/2.3/ Modified: head/mail/dovecot/files/dovecot.in ============================================================================== --- head/mail/dovecot/files/dovecot.in Tue Oct 30 14:00:31 2018 (r483489) +++ head/mail/dovecot/files/dovecot.in Tue Oct 30 14:04:21 2018 (r483490) @@ -60,7 +60,7 @@ for config in ${dovecot_config}; do required_files="${config}" command_args="-c ${config}" if [ -s ${config} ]; then - ${command} ${command_args} -a 2>/dev/null + ${command} ${command_args} -a 2>&1 >/dev/null if [ $? -ne 0 ]; then echo "==Error==" echo "Configuration file check failed."
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810301404.w9UE4LnB072213>