Date: Wed, 4 Jun 2014 00:30:49 +0000 (UTC) From: Ashish SHUKLA <ashish@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356418 - in head/mail/opensmtpd: . files Message-ID: <201406040030.s540UnSF000921@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ashish Date: Wed Jun 4 00:30:49 2014 New Revision: 356418 URL: http://svnweb.freebsd.org/changeset/ports/356418 QAT: https://qat.redports.org/buildarchive/r356418/ Log: - Make rc.d script send signals only to the parent daemon process to fix a race condition. Submitted by: naddy (via private email) Modified: head/mail/opensmtpd/Makefile head/mail/opensmtpd/files/smtpd.in Modified: head/mail/opensmtpd/Makefile ============================================================================== --- head/mail/opensmtpd/Makefile Tue Jun 3 22:48:40 2014 (r356417) +++ head/mail/opensmtpd/Makefile Wed Jun 4 00:30:49 2014 (r356418) @@ -3,6 +3,7 @@ PORTNAME= opensmtpd PORTVERSION= 5.4.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= mail MASTER_SITES= http://www.opensmtpd.org/archives/ \ Modified: head/mail/opensmtpd/files/smtpd.in ============================================================================== --- head/mail/opensmtpd/files/smtpd.in Tue Jun 3 22:48:40 2014 (r356417) +++ head/mail/opensmtpd/files/smtpd.in Wed Jun 4 00:30:49 2014 (r356418) @@ -18,6 +18,11 @@ . /etc/rc.subr +check_process() +{ + /bin/pgrep -f 'smtpd: \[priv\]' +} + name="smtpd" rcvar=smtpd_enable
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406040030.s540UnSF000921>