mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Found another problem with variable handling, when it contains a dash
This commit is contained in:
parent
8cf82404ac
commit
22c41cd6c8
1 changed files with 2 additions and 2 deletions
|
@ -175,8 +175,8 @@ print_config() {
|
|||
echo graph_period minute
|
||||
|
||||
for activity in I S W V O A M F N C; do
|
||||
local label=$(get_activity_description $activity short)
|
||||
local info=$(get_activity_description $activity long)
|
||||
local label="$(get_activity_description $activity short)"
|
||||
local info="$(get_activity_description $activity long)"
|
||||
echo $activity.label $label
|
||||
echo $activity.info $info
|
||||
echo $activity.draw AREASTACK
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue