tinyhttpd: systemd support

[Thomas: use relative symlink.]

Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Alex Suykov 2015-05-23 13:08:37 +03:00 committed by Thomas Petazzoni
parent de2dd8f473
commit b7afea9500
2 changed files with 18 additions and 0 deletions

View File

@ -24,4 +24,12 @@ define TINYHTTPD_INSTALL_INIT_SYSV
$(TARGET_DIR)/etc/init.d/S85tinyhttpd
endef
define TINYHTTPD_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 package/tinyhttpd/tinyhttpd.service \
$(TARGET_DIR)/usr/lib/systemd/system/tinyhttpd.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -sf ../../../../usr/lib/systemd/system/tinyhttpd.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/tinyhttpd.service
endef
$(eval $(generic-package))

View File

@ -0,0 +1,10 @@
[Unit]
Description=Tiny HTTP daemon
After=network.target
[Service]
ExecStart=/usr/sbin/tinyhttpd
Restart=always
[Install]
WantedBy=multi-user.target