diff options
author | Steffen Sledz <sledz@dresearch-fe.de> | 2014-02-11 09:59:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-20 14:28:09 +0000 |
commit | ccb0a580956d309e8a501ee956f08fafcc886ea6 (patch) | |
tree | 3128f90a4371dd46e93ca98df1bac6ddb38f78ea /meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb | |
parent | 39b98e49f277fac39adcbba8f20bed47e0210a8c (diff) | |
download | poky-ccb0a580956d309e8a501ee956f08fafcc886ea6.tar.gz |
lighttpd: introduce /etc/lighttpd.d subdir for config file includes
Extend default config file by a directive to include config file
fragments from /etc/lighttpd.d. This allows other web application
packages to put their configuration there.
(From OE-Core rev: 949ef58cf0684147b07745bd1199014ac57b437c)
Signed-off-by: Steffen Sledz <sledz@dresearch-fe.de>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb')
-rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb index 2ddab16498..2ea5f85b15 100644 --- a/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb +++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb | |||
@@ -5,6 +5,7 @@ BUGTRACKER = "http://redmine.lighttpd.net/projects/lighttpd/issues" | |||
5 | LICENSE = "BSD" | 5 | LICENSE = "BSD" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" |
7 | 7 | ||
8 | PR = "r1" | ||
8 | 9 | ||
9 | SECTION = "net" | 10 | SECTION = "net" |
10 | DEPENDS = "zlib libpcre" | 11 | DEPENDS = "zlib libpcre" |
@@ -47,7 +48,7 @@ INITSCRIPT_PARAMS = "defaults 70" | |||
47 | SYSTEMD_SERVICE_${PN} = "lighttpd.service" | 48 | SYSTEMD_SERVICE_${PN} = "lighttpd.service" |
48 | 49 | ||
49 | do_install_append() { | 50 | do_install_append() { |
50 | install -d ${D}${sysconfdir}/init.d ${D}/www/pages/dav | 51 | install -d ${D}${sysconfdir}/init.d ${D}${sysconfdir}/lighttpd.d ${D}/www/pages/dav |
51 | install -m 0755 ${WORKDIR}/lighttpd ${D}${sysconfdir}/init.d | 52 | install -m 0755 ${WORKDIR}/lighttpd ${D}${sysconfdir}/init.d |
52 | install -m 0755 ${WORKDIR}/lighttpd.conf ${D}${sysconfdir} | 53 | install -m 0755 ${WORKDIR}/lighttpd.conf ${D}${sysconfdir} |
53 | install -m 0644 ${WORKDIR}/index.html.lighttpd ${D}/www/pages/index.html | 54 | install -m 0644 ${WORKDIR}/index.html.lighttpd ${D}/www/pages/index.html |