From d2d62204769b62c3c4bb974dd3cf0c847b24c7b5 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Wed, 24 Jun 2020 16:13:32 +0200 Subject: [PATCH] collectd: remove quotation on interval this is an number The value is a number and not a string. Signed-off-by: Florian Eckert --- utils/collectd/files/collectd.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/collectd/files/collectd.init b/utils/collectd/files/collectd.init index 7400194b0..89fc6b2bb 100644 --- a/utils/collectd/files/collectd.init +++ b/utils/collectd/files/collectd.init @@ -320,7 +320,7 @@ process_config() { printf "TypesDB \"%s\"\n" "$TypesDB" >> "$COLLECTD_CONF" config_get Interval globals Interval 30 - printf "Interval \"%s\"\n" "$Interval" >> "$COLLECTD_CONF" + printf "Interval %s\n" "$Interval" >> "$COLLECTD_CONF" config_get ReadThreads globals ReadThreads 2 printf "ReadThreads \"%s\"\n" "$ReadThreads" >> "$COLLECTD_CONF"