summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-httpd/apache2/files/init
diff options
context:
space:
mode:
authorRiku Voipio <riku.voipio@linaro.org>2013-07-22 17:04:54 +0300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-07-26 10:06:01 +0100
commit16fad8e6191fddd372e0791e0b6f3d541ce3b738 (patch)
treea1c1a590c20e35e0ebbb54d54174ad72afa93c83 /meta-webserver/recipes-httpd/apache2/files/init
parent02adda55bbb151b540ae00d57618ae6ac2b348f7 (diff)
downloadmeta-openembedded-16fad8e6191fddd372e0791e0b6f3d541ce3b738.tar.gz
apache2: move pidfile to run
pidile was stored in /var/apache2/log which is saved over boots. This might prevent startup of apache2 on boots. Move it to /run where pidfiles in general belong.
Diffstat (limited to 'meta-webserver/recipes-httpd/apache2/files/init')
-rwxr-xr-xmeta-webserver/recipes-httpd/apache2/files/init2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/files/init b/meta-webserver/recipes-httpd/apache2/files/init
index 346dc0d52f..a1adbd74f9 100755
--- a/meta-webserver/recipes-httpd/apache2/files/init
+++ b/meta-webserver/recipes-httpd/apache2/files/init
@@ -14,7 +14,7 @@ NAME=apache2
14PATH=/bin:/usr/bin:/sbin:/usr/sbin 14PATH=/bin:/usr/bin:/sbin:/usr/sbin
15DAEMON=/usr/sbin/httpd 15DAEMON=/usr/sbin/httpd
16SUEXEC=/usr/lib/apache/suexec 16SUEXEC=/usr/lib/apache/suexec
17PIDFILE=/var/apache2/logs/httpd.pid 17PIDFILE=/run/httpd.pid
18CONF=/etc/apache2/httpd.conf 18CONF=/etc/apache2/httpd.conf
19APACHECTL=/usr/sbin/apachectl 19APACHECTL=/usr/sbin/apachectl
20 20