1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 14:16:00 +00:00

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.
This commit is contained in:
Lars Kruse 2019-08-12 00:17:15 +02:00
parent e91f7ecba7
commit 0d593014b4

View file

@ -257,7 +257,7 @@ EOF
multigraph lxc_net multigraph lxc_net
graph_title Network traffic graph_title Network traffic
graph_args --base 1000 graph_args --base 1000
graph_vlabel bits in (-) / out (+) per ${graph_period} graph_vlabel bits in (-) / out (+) per \${graph_period}
graph_category lxc graph_category lxc
graph_info This graph shows the traffic of active LXC containers. graph_info This graph shows the traffic of active LXC containers.
EOF EOF