From 0d593014b4baf33c5c12b88cbac83df4b49fccf2 Mon Sep 17 00:00:00 2001 From: Lars Kruse Date: Mon, 12 Aug 2019 00:17:15 +0200 Subject: [PATCH] Plugin lxc: fix printing of "${graph_period}" This specific text token ("${graph_period}") is interpreted by munin and should not be interpreted by the shell. Thus it needs to be escaped. --- plugins/lxc/lxc-multigraph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lxc/lxc-multigraph b/plugins/lxc/lxc-multigraph index ce759d04..24cda4bc 100755 --- a/plugins/lxc/lxc-multigraph +++ b/plugins/lxc/lxc-multigraph @@ -257,7 +257,7 @@ EOF multigraph lxc_net graph_title Network traffic graph_args --base 1000 -graph_vlabel bits in (-) / out (+) per ${graph_period} +graph_vlabel bits in (-) / out (+) per \${graph_period} graph_category lxc graph_info This graph shows the traffic of active LXC containers. EOF