svn commit: r366721 - in head/mail: opensmtpd opensmtpd-devel opensmtpd-devel/files opensmtpd/files

Ashish SHUKLA ashish at FreeBSD.org
Sun Aug 31 04:13:17 UTC 2014


Author: ashish
Date: Sun Aug 31 04:13:16 2014
New Revision: 366721
URL: http://svnweb.freebsd.org/changeset/ports/366721
QAT: https://qat.redports.org/buildarchive/r366721/

Log:
  - Fix rc.d script so it can distinguish between smtpd processes
    running between host and jail
  
  Submitted by:	Creaky <whatexercise at gmail.com> (via private email)

Modified:
  head/mail/opensmtpd-devel/Makefile
  head/mail/opensmtpd-devel/files/smtpd.in
  head/mail/opensmtpd/Makefile
  head/mail/opensmtpd/files/smtpd.in

Modified: head/mail/opensmtpd-devel/Makefile
==============================================================================
--- head/mail/opensmtpd-devel/Makefile	Sun Aug 31 04:10:30 2014	(r366720)
+++ head/mail/opensmtpd-devel/Makefile	Sun Aug 31 04:13:16 2014	(r366721)
@@ -3,7 +3,7 @@
 
 PORTNAME=	opensmtpd
 PORTVERSION=	201405202105
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	mail
 MASTER_SITES=	http://www.opensmtpd.org/archives/ \

Modified: head/mail/opensmtpd-devel/files/smtpd.in
==============================================================================
--- head/mail/opensmtpd-devel/files/smtpd.in	Sun Aug 31 04:10:30 2014	(r366720)
+++ head/mail/opensmtpd-devel/files/smtpd.in	Sun Aug 31 04:13:16 2014	(r366721)
@@ -20,7 +20,7 @@
 
 check_process()
 {
-	/bin/pgrep -f 'smtpd: \[priv\]'
+	/bin/pgrep -j none -f 'smtpd: \[priv\]'
 }
 
 name="smtpd"

Modified: head/mail/opensmtpd/Makefile
==============================================================================
--- head/mail/opensmtpd/Makefile	Sun Aug 31 04:10:30 2014	(r366720)
+++ head/mail/opensmtpd/Makefile	Sun Aug 31 04:13:16 2014	(r366721)
@@ -3,7 +3,7 @@
 
 PORTNAME=	opensmtpd
 PORTVERSION=	5.4.2
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	mail
 MASTER_SITES=	http://www.opensmtpd.org/archives/ \

Modified: head/mail/opensmtpd/files/smtpd.in
==============================================================================
--- head/mail/opensmtpd/files/smtpd.in	Sun Aug 31 04:10:30 2014	(r366720)
+++ head/mail/opensmtpd/files/smtpd.in	Sun Aug 31 04:13:16 2014	(r366721)
@@ -20,7 +20,7 @@
 
 check_process()
 {
-	/bin/pgrep -f 'smtpd: \[priv\]'
+	/bin/pgrep -j none -f 'smtpd: \[priv\]'
 }
 
 name="smtpd"


More information about the svn-ports-head mailing list