From c8ae4dc8ce180bfdf706d98c1501105c97899f5b Mon Sep 17 00:00:00 2001 From: Alejandro Hernandez Date: Fri, 15 May 2015 01:46:08 -0500 Subject: nginx: Add suport for systemd Adds support for systemd, creates a service for nginx and installs it if required Signed-off-by: Alejandro Hernandez Signed-off-by: Martin Jansa --- meta-webserver/recipes-httpd/nginx/files/nginx.service | 12 ++++++++++++ meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb | 13 ++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 meta-webserver/recipes-httpd/nginx/files/nginx.service (limited to 'meta-webserver') diff --git a/meta-webserver/recipes-httpd/nginx/files/nginx.service b/meta-webserver/recipes-httpd/nginx/files/nginx.service new file mode 100644 index 000000000..705450e47 --- /dev/null +++ b/meta-webserver/recipes-httpd/nginx/files/nginx.service @@ -0,0 +1,12 @@ +[Unit] +Description=Nginx Server +After=network.target +[Service] +Type=forking +PIDFile=@SYSCONFDIR@/nginx/run/nginx.pid +ExecStartPre=mkdir -p @LOCALSTATEDIR@/log/nginx +ExecStart=@SYSCONFDIR@/init.d/nginx start +ExecStop=@SYSCONFDIR@/init.d/nginx stop +[Install] +WantedBy=multi-user.target + diff --git a/meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb b/meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb index e78ed34dd..0dfdb5b86 100644 --- a/meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb +++ b/meta-webserver/recipes-httpd/nginx/nginx_1.4.4.bb @@ -17,6 +17,7 @@ SRC_URI = " \ file://nginx.conf \ file://nginx.init \ file://nginx-volatile.conf \ + file://nginx.service \ " SRC_URI[md5sum] = "5dfaba1cbeae9087f3949860a02caa9f" SRC_URI[sha256sum] = "7c989a58e5408c9593da0bebcd0e4ffc3d892d1316ba5042ddb0be5b0b4102b9" @@ -81,6 +82,14 @@ do_install () { install -d ${D}${sysconfdir}/default/volatiles install -m 0644 ${WORKDIR}/nginx-volatile.conf ${D}${sysconfdir}/default/volatiles/99_nginx sed -i 's,/var/,${localstatedir}/,g' ${D}${sysconfdir}/default/volatiles/99_nginx + + if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)};then + install -d ${D}${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/nginx.service ${D}${systemd_unitdir}/system/ + sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' \ + -e 's,@LOCALSTATEDIR@,${localstatedir},g' \ + ${D}${systemd_unitdir}/system/nginx.service + fi } pkg_postinst_${PN} () { @@ -93,7 +102,9 @@ pkg_postinst_${PN} () { fi } -FILES_${PN} += "${localstatedir}/" +FILES_${PN} += "${localstatedir}/ \ + ${systemd_unitdir}/system/nginx.service \ + " CONFFILES_${PN} = "${sysconfdir}/nginx/nginx.conf \ ${sysconfdir}/nginx/fastcgi.conf\ -- cgit v1.2.3-54-g00ecf