[Thomas: use relative symlink.]
Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
$(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))
--- /dev/null
+[Unit]
+Description=Tiny HTTP daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/sbin/tinyhttpd
+Restart=always
+
+[Install]
+WantedBy=multi-user.target