Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -7,13 +7,14 @@ config BR2_PACKAGE_LIGHTTPD
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
lighttpd a secure, fast, compliant and very flexible web-server
|
||||
which has been optimized for high-performance environments. It
|
||||
has a very low memory footprint compared to other webservers and
|
||||
takes care of cpu-load. Its advanced feature-set (FastCGI, CGI,
|
||||
Auth, Output-Compression, URL-Rewriting and many more) make
|
||||
lighttpd the perfect webserver-software for every server that
|
||||
is suffering load problems.
|
||||
lighttpd a secure, fast, compliant and very flexible
|
||||
web-server which has been optimized for high-performance
|
||||
environments. It has a very low memory footprint compared to
|
||||
other webservers and takes care of cpu-load. Its advanced
|
||||
feature-set (FastCGI, CGI, Auth, Output-Compression,
|
||||
URL-Rewriting and many more) make lighttpd the perfect
|
||||
webserver-software for every server that is suffering load
|
||||
problems.
|
||||
|
||||
http://www.lighttpd.net/
|
||||
|
||||
|
||||
@@ -2,15 +2,21 @@
|
||||
#
|
||||
# Starts lighttpd.
|
||||
#
|
||||
NAME=lighttpd
|
||||
DAEMON=/usr/sbin/$NAME
|
||||
PID_FILE="/var/run/$NAME.pid"
|
||||
CONF_FILE="/etc/$NAME/$NAME.conf"
|
||||
|
||||
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
|
||||
|
||||
start() {
|
||||
printf "Starting lighttpd: "
|
||||
start-stop-daemon -S -q -p /var/run/lighttpd.pid --exec /usr/sbin/lighttpd -- -f /etc/lighttpd/lighttpd.conf
|
||||
start-stop-daemon -S -q -p $PID_FILE --exec $DAEMON -- -f $CONF_FILE
|
||||
echo "OK"
|
||||
}
|
||||
stop() {
|
||||
printf "Stopping lighttpd: "
|
||||
start-stop-daemon -K -q -p /var/run/lighttpd.pid
|
||||
start-stop-daemon -K -q -p $PID_FILE
|
||||
echo "OK"
|
||||
}
|
||||
restart() {
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
# From http://www.lighttpd.net/
|
||||
sha256 1c97225deea33eefba6d4158c2cef27913d47553263516bbe9d2e2760fc43a3f lighttpd-1.4.45.tar.xz
|
||||
sha256 0f8ad5aac7529d7b948b9d7e8cd0b4a9e177309d85d6bf6516e28e6e40d74f36 lighttpd-1.4.48.tar.xz
|
||||
# Locally calculated
|
||||
sha256 5c98cad2fbaf5c5e2562bcbab401a7c557c1bb1bac9914ecc63730925052fb13 COPYING
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
################################################################################
|
||||
|
||||
LIGHTTPD_VERSION_MAJOR = 1.4
|
||||
LIGHTTPD_VERSION = $(LIGHTTPD_VERSION_MAJOR).45
|
||||
LIGHTTPD_VERSION = $(LIGHTTPD_VERSION_MAJOR).48
|
||||
LIGHTTPD_SOURCE = lighttpd-$(LIGHTTPD_VERSION).tar.xz
|
||||
LIGHTTPD_SITE = http://download.lighttpd.net/lighttpd/releases-$(LIGHTTPD_VERSION_MAJOR).x
|
||||
LIGHTTPD_LICENSE = BSD-3c
|
||||
LIGHTTPD_LICENSE = BSD-3-Clause
|
||||
LIGHTTPD_LICENSE_FILES = COPYING
|
||||
LIGHTTPD_DEPENDENCIES = host-pkgconf
|
||||
LIGHTTPD_CONF_OPTS = \
|
||||
@@ -96,6 +96,9 @@ define LIGHTTPD_INSTALL_INIT_SYSTEMD
|
||||
|
||||
ln -fs ../../../../usr/lib/systemd/system/lighttpd.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/lighttpd.service
|
||||
|
||||
$(INSTALL) -D -m 644 package/lighttpd/lighttpd_tmpfiles.conf \
|
||||
$(TARGET_DIR)/usr/lib/tmpfiles.d/lighttpd.conf
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
2
bsp/buildroot/package/lighttpd/lighttpd_tmpfiles.conf
Normal file
2
bsp/buildroot/package/lighttpd/lighttpd_tmpfiles.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
f /var/log/lighttpd-access.log 0640 www-data www-data -
|
||||
f /var/log/lighttpd-error.log 0640 www-data www-data -
|
||||
Reference in New Issue
Block a user