diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2013-01-02 02:12:16 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2013-01-02 02:12:16 +0000 |
commit | 9a38bebc6fd78265ea52d2a1e4c99efe4bec7f48 (patch) | |
tree | 96f73f3a94163ba2b0fcd87bccfd11d4e2de99d4 /www/apache22/Makefile | |
parent | f3adea88f87b57c6935d06cbb2cd30ec3a7a1aee (diff) |
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.
Notes
Notes:
svn path=/head/; revision=309798
Diffstat (limited to 'www/apache22/Makefile')
-rw-r--r-- | www/apache22/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile index 02a23abe614d..012b136eaeb9 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -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} |