diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-06-24 16:13:32 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2020-06-24 20:09:09 +0200 |
commit | d2d62204769b62c3c4bb974dd3cf0c847b24c7b5 (patch) | |
tree | 051957979155740a97fa33a953fe519d2b0ef4df | |
parent | 50f56c2ede8dc57464a94bdff4dce36ac3fe04dd (diff) |
collectd: remove quotation on interval this is an number
The value is a number and not a string.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
-rw-r--r-- | utils/collectd/files/collectd.init | 2 |
1 files changed, 1 insertions, 1 deletions
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" |