diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2014-09-08 12:58:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-10 11:28:13 +0100 |
commit | de8d70ccd846167df31037b7a89f7d13f6731cf6 (patch) | |
tree | 0ff145c3b0c9375c0cc016e12102378184f40440 /meta/recipes-extended/lighttpd | |
parent | c840369a65ee5041154e12fdd8919938856a0a6c (diff) | |
download | openembedded-core-de8d70ccd846167df31037b7a89f7d13f6731cf6.tar.gz openembedded-core-de8d70ccd846167df31037b7a89f7d13f6731cf6.tar.bz2 openembedded-core-de8d70ccd846167df31037b7a89f7d13f6731cf6.zip |
lighttpd: install config file without execute permissions
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lighttpd')
-rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb index 0acc37d94f..20d5c1caa0 100644 --- a/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb +++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb @@ -51,7 +51,7 @@ SYSTEMD_SERVICE_${PN} = "lighttpd.service" do_install_append() { install -d ${D}${sysconfdir}/init.d ${D}${sysconfdir}/lighttpd.d ${D}/www/pages/dav install -m 0755 ${WORKDIR}/lighttpd ${D}${sysconfdir}/init.d - install -m 0755 ${WORKDIR}/lighttpd.conf ${D}${sysconfdir} + install -m 0644 ${WORKDIR}/lighttpd.conf ${D}${sysconfdir} install -m 0644 ${WORKDIR}/index.html.lighttpd ${D}/www/pages/index.html install -d ${D}${systemd_unitdir}/system |