Merge pull request #120 from chris5560/master

[PATCH] lighttpd: errorlog failed as non root user
This commit is contained in:
Thomas Heil 2014-07-23 22:18:08 +02:00
commit 930fbad74d
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,8 @@ SERVICE_USE_PID=1
START=50
start() {
mkdir -m 0755 -p /var/log/lighttpd
[ -d /var/log/lighttpd ] || mkdir -p /var/log/lighttpd
chmod 0777 /var/log/lighttpd
service_start /usr/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf
}