[oe-commits] Yasir-Khan : lighttpd: add www/{logs,var} symlinks

git at git.openembedded.org git at git.openembedded.org
Fri Jan 10 15:14:19 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: cd97c2b77e32ec741aa5a51e1e1799b7665a184d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=cd97c2b77e32ec741aa5a51e1e1799b7665a184d

Author: Yasir-Khan <yasir_khan at mentor.com>
Date:   Mon Jan  6 21:43:33 2014 +0500

lighttpd: add www/{logs,var} symlinks

For FHS compliance, create symbolic links to write variable data
to standard paths

Signed-off-by: Yasir-Khan <yasir_khan at mentor.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb
index 528fda7..2ddab16 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.33.bb
@@ -47,7 +47,7 @@ INITSCRIPT_PARAMS = "defaults 70"
 SYSTEMD_SERVICE_${PN} = "lighttpd.service"
 
 do_install_append() {
-	install -d ${D}${sysconfdir}/init.d ${D}/www/logs ${D}/www/pages/dav ${D}/www/var
+	install -d ${D}${sysconfdir}/init.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}/index.html.lighttpd ${D}/www/pages/index.html
@@ -58,6 +58,9 @@ do_install_append() {
 		-e 's, at SYSCONFDIR@,${sysconfdir},g' \
 		-e 's, at BASE_BINDIR@,${base_bindir},g' \
 		${D}${systemd_unitdir}/system/lighttpd.service
+	#For FHS compliance, create symbolic links to /var/log and /var/tmp for logs and temporary data
+	ln -sf ${localstatedir}/log ${D}/www/logs
+	ln -sf ${localstatedir}/tmp ${D}/www/var
 }
 
 FILES_${PN} += "${sysconfdir} /www"



More information about the Openembedded-commits mailing list