svn commit: r309798 - in head/www/apache22: . files

Andrey A. Chernov ache at FreeBSD.org
Wed Jan 2 02:12:17 UTC 2013


Author: ache
Date: Wed Jan  2 02:12:16 2013
New Revision: 309798
URL: http://svnweb.freebsd.org/changeset/ports/309798

Log:
  Use
  LockFile "/var/run/accept.lock"
  instead of previous
  LockFile "/var/log/accept.lock"
  
  If system is crashed and rebooted, Apache refuses to start in case
  /var/log/accept.lock.<pid> is found. That <pid> is almost always the same
  due to minimum pid variance right after boot.
  So use /var/run instead, which is cleaned on each boot.

Added:
  head/www/apache22/files/patch-docs__conf__extra__httpd-mpm.conf.in   (contents, props changed)
Modified:
  head/www/apache22/Makefile

Modified: head/www/apache22/Makefile
==============================================================================
--- head/www/apache22/Makefile	Wed Jan  2 01:35:10 2013	(r309797)
+++ head/www/apache22/Makefile	Wed Jan  2 02:12:16 2013	(r309798)
@@ -2,7 +2,7 @@
 
 PORTNAME=	apache22
 PORTVERSION=	2.2.23
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	www ipv6
 MASTER_SITES=	${MASTER_SITE_APACHE_HTTPD}
 DISTNAME=	httpd-${PORTVERSION}

Added: head/www/apache22/files/patch-docs__conf__extra__httpd-mpm.conf.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/apache22/files/patch-docs__conf__extra__httpd-mpm.conf.in	Wed Jan  2 02:12:16 2013	(r309798)
@@ -0,0 +1,11 @@
+--- docs/conf/extra/httpd-mpm.conf.in.bak	2007-12-29 06:08:28.000000000 +0300
++++ docs/conf/extra/httpd-mpm.conf.in	2013-01-02 05:58:13.000000000 +0400
+@@ -17,7 +17,7 @@
+ #
+ <IfModule !mpm_winnt_module>
+ <IfModule !mpm_netware_module>
+-LockFile "@rel_logfiledir@/accept.lock"
++LockFile "@rel_runtimedir@/accept.lock"
+ </IfModule>
+ </IfModule>
+ 


More information about the svn-ports-head mailing list