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>
This commit is contained in:
parent
50f56c2ede
commit
d2d6220476
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue