From c926168400f2bbc584cd58119b9f16f1f7d74e02 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Mon, 28 Dec 2020 15:56:51 +0100 Subject: services: disable telegraf by default Commit 5bd60a745de22 ("Add telegraf agent (experimentally)") added the agent to the rolling ISO. The telegraf daemon was thus always started by default and simply consuming RAM without doing anything useful. As all VyOS servcies are disabled by default, so is telegraf. If you wan't to experiment with it, you can simply start and enable the service on your system by: systemctl enable telegraf.service systemctl start telegraf.service --- data/live-build-config/hooks/live/18-enable-disable_services.chroot | 1 + 1 file changed, 1 insertion(+) diff --git a/data/live-build-config/hooks/live/18-enable-disable_services.chroot b/data/live-build-config/hooks/live/18-enable-disable_services.chroot index b401d560..25d1180f 100755 --- a/data/live-build-config/hooks/live/18-enable-disable_services.chroot +++ b/data/live-build-config/hooks/live/18-enable-disable_services.chroot @@ -48,6 +48,7 @@ systemctl disable dropbear.service systemctl disable fastnetmon.service systemctl disable ocserv.service systemctl disable tuned.service +systemctl disable telegraf.service echo I: Enabling services systemctl enable ssh-session-cleanup.service -- cgit v1.2.3