Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/lighttpd/files/conf/, www-servers/lighttpd/files/
Date: Fri, 02 Aug 2019 12:08:59
Message-Id: 1564747699.2a1116bbd96aba9fe0c9afdd0a2f227e147b1388.zlogene@gentoo
1 commit: 2a1116bbd96aba9fe0c9afdd0a2f227e147b1388
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 2 12:08:19 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 2 12:08:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a1116bb
7
8 www-servers/lighttpd: migrate to /run
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 www-servers/lighttpd/files/conf/lighttpd.conf | 2 +-
14 www-servers/lighttpd/files/conf/mod_fastcgi.conf | 2 +-
15 www-servers/lighttpd/files/lighttpd.tmpfiles.conf | 2 +-
16 3 files changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/www-servers/lighttpd/files/conf/lighttpd.conf b/www-servers/lighttpd/files/conf/lighttpd.conf
19 index 763170c6ff0..2a13a57c1c8 100644
20 --- a/www-servers/lighttpd/files/conf/lighttpd.conf
21 +++ b/www-servers/lighttpd/files/conf/lighttpd.conf
22 @@ -47,7 +47,7 @@ server.username = "lighttpd"
23 server.groupname = "lighttpd"
24
25 server.document-root = var.basedir + "/htdocs"
26 -server.pid-file = "/var/run/lighttpd.pid"
27 +server.pid-file = "/run/lighttpd.pid"
28
29 server.errorlog = var.logdir + "/error.log"
30 # log errors to syslog instead
31
32 diff --git a/www-servers/lighttpd/files/conf/mod_fastcgi.conf b/www-servers/lighttpd/files/conf/mod_fastcgi.conf
33 index b72b1ce604b..5d5ea51ef25 100644
34 --- a/www-servers/lighttpd/files/conf/mod_fastcgi.conf
35 +++ b/www-servers/lighttpd/files/conf/mod_fastcgi.conf
36 @@ -7,7 +7,7 @@ server.modules += ("mod_fastcgi")
37 fastcgi.server = ( ".php" =>
38 ( "localhost" =>
39 (
40 - "socket" => "/var/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
41 + "socket" => "/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
42 "bin-path" => "/usr/bin/php-cgi"
43 )
44 )
45
46 diff --git a/www-servers/lighttpd/files/lighttpd.tmpfiles.conf b/www-servers/lighttpd/files/lighttpd.tmpfiles.conf
47 index 325ab13d839..4ba7262b637 100644
48 --- a/www-servers/lighttpd/files/lighttpd.tmpfiles.conf
49 +++ b/www-servers/lighttpd/files/lighttpd.tmpfiles.conf
50 @@ -1 +1 @@
51 -d /var/run/lighttpd 0750 lighttpd lighttpd -
52 \ No newline at end of file
53 +d /run/lighttpd 0750 lighttpd lighttpd -