summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package/collectd/collectd.mk8
-rw-r--r--package/collectd/collectd.service17
2 files changed, 25 insertions, 0 deletions
diff --git a/package/collectd/collectd.mk b/package/collectd/collectd.mk
index eb66f2563e..78e24b8a0f 100644
--- a/package/collectd/collectd.mk
+++ b/package/collectd/collectd.mk
@@ -185,4 +185,12 @@ define COLLECTD_INSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/usr/share/collectd/postgresql_default.conf
endef
+define COLLECTD_INSTALL_INIT_SYSTEMD
+ $(INSTALL) -D -m 644 package/collectd/collectd.service \
+ $(TARGET_DIR)/usr/lib/systemd/system/collectd.service
+ mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
+ ln -fs ../../../../usr/lib/systemd/system/collectd.service \
+ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/collectd.service
+endef
+
$(eval $(autotools-package))
diff --git a/package/collectd/collectd.service b/package/collectd/collectd.service
new file mode 100644
index 0000000000..e203806f59
--- /dev/null
+++ b/package/collectd/collectd.service
@@ -0,0 +1,17 @@
+[Unit]
+Description=Statistics collection and monitoring daemon
+After=local-fs.target network.target
+Requires=local-fs.target network.target
+ConditionPathExists=/etc/collectd.conf
+
+[Service]
+Type=notify
+NotifyAccess=main
+EnvironmentFile=-/etc/default/collectd
+ExecStartPre=/usr/sbin/collectd -t
+ExecStart=/usr/sbin/collectd
+Restart=always
+RestartSec=10
+
+[Install]
+WantedBy=multi-user.target
OpenPOWER on IntegriCloud