diff options
author | Peter Palfrader <peter@palfrader.org> | 2006-07-22 11:37:37 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2006-07-22 11:37:37 +0000 |
commit | ce4dcd7da279031290b4e8851a5f05e80ba7d92a (patch) | |
tree | b33030524017a5b3444d9c058735bce4cd015970 | |
parent | 8d5e31063d1912e148d8c0326e7f112d941057b2 (diff) |
Remove -l max
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@163 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
-rwxr-xr-x | munin/munin-cpufreq | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/munin/munin-cpufreq b/munin/munin-cpufreq index 3a43fa9..70859c8 100755 --- a/munin/munin-cpufreq +++ b/munin/munin-cpufreq @@ -40,7 +40,8 @@ def config m = findmasters max = m.map{ |i| i['max'] }.max puts 'graph_title CPU frequency' - puts "graph_args -l 0 -l #{max} --base 1000" + #puts "graph_args -l 0 -l #{max} --base 1000" + puts "graph_args -l 0 --base 1000" puts 'graph_vlabel Hz' puts 'graph_category system' puts 'graph_period second' |