Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Jan 2013 02:12:17 +0000 (UTC)
From:      "Andrey A. Chernov" <ache@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309798 - in head/www/apache22: . files
Message-ID:  <201301020212.r022CHah089639@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301020212.r022CHah089639>