Date: Tue, 6 Nov 2018 14:52:43 +0000 (UTC) From: Ollivier Robert <roberto@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r484295 - in head/mail/fetchmail: . files Message-ID: <201811061452.wA6EqhhZ085696@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: roberto Date: Tue Nov 6 14:52:43 2018 New Revision: 484295 URL: https://svnweb.freebsd.org/changeset/ports/484295 Log: mail/fetchmail: - Ensure the fetchmail script returns 1 if fetchmail is not running. - Bump PORTREVISION. PR: ports/219051 Modified: head/mail/fetchmail/Makefile head/mail/fetchmail/files/fetchmail.in Modified: head/mail/fetchmail/Makefile ============================================================================== --- head/mail/fetchmail/Makefile Tue Nov 6 14:51:26 2018 (r484294) +++ head/mail/fetchmail/Makefile Tue Nov 6 14:52:43 2018 (r484295) @@ -3,7 +3,7 @@ PORTNAME= fetchmail PORTVERSION= 6.3.26 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= mail ipv6 MASTER_SITES= SF/${PORTNAME}/branch_6.3/ \ http://mandree.home.pages.de/${PORTNAME}/ Modified: head/mail/fetchmail/files/fetchmail.in ============================================================================== --- head/mail/fetchmail/files/fetchmail.in Tue Nov 6 14:51:26 2018 (r484294) +++ head/mail/fetchmail/files/fetchmail.in Tue Nov 6 14:52:43 2018 (r484295) @@ -137,6 +137,7 @@ else retcode="$?" if [ "0${retcode}" -ne 0 ]; then failed="${user} (${retcode}) ${failed:-}" + exit 1 else success="${user} ${success:-}" fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811061452.wA6EqhhZ085696>