From e7a11f1aadf5dd0ab48749151453331926d4d8a2 Mon Sep 17 00:00:00 2001 From: Christoph Maser Date: Fri, 27 Mar 2015 11:01:26 +0100 Subject: [PATCH] CreateFiles/CreateFilesAsync expect boolean values collectd: cf_util_get_boolean: The CreateFiles option requires exactly one boolean argument. collectd: rrdcached plugin: Handling the "CreateFiles" option failed. collectd: cf_util_get_boolean: The CreateFilesAsync option requires exactly one boolean argument. collectd: rrdcached plugin: Handling the "CreateFilesAsync" option failed. --- templates/plugin/rrdcached.conf.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/plugin/rrdcached.conf.erb b/templates/plugin/rrdcached.conf.erb index b469924d8..92917a88f 100644 --- a/templates/plugin/rrdcached.conf.erb +++ b/templates/plugin/rrdcached.conf.erb @@ -2,10 +2,10 @@ DaemonAddress "<%= @daemonaddress %>" DataDir "<%= @datadir %>" <% unless @createfiles.nil? -%> - CreateFiles "<%= @createfiles %>" + CreateFiles <%= @createfiles %> <% end -%> <% unless @createfilesasync.nil? -%> - CreateFilesAsync "<%= @createfilesasync %>" + CreateFilesAsync <%= @createfilesasync %> <% end -%> <% if @stepsize -%> StepSize "<%= @stepsize %>"