Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
$(TARGET_DIR)/etc/init.d/S50apache
endef
+define APACHE_INSTALL_INIT_SYSTEMD
+ $(INSTALL) -D -m 644 package/apache/apache.service \
+ $(TARGET_DIR)/usr/lib/systemd/system/apache.service
+ mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
+ ln -sf ../../../../usr/lib/systemd/system/apache.service \
+ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/apache.service
+endef
+
$(eval $(autotools-package))
--- /dev/null
+[Unit]
+Description=Apache HTTP Server
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/apachectl start
+ExecReload=/usr/bin/apachectl graceful
+ExecStop=/usr/bin/apachectl stop
+Restart=always
+
+[Install]
+WantedBy=multi-user.target