mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 23:43:34 +08:00
collectd: Add service file
The service file was taken from Debian. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
2511024c81
commit
7f18274a92
@ -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))
|
||||
|
17
package/collectd/collectd.service
Normal file
17
package/collectd/collectd.service
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user