1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Whitespace cleanup

* remove trailing whitespace
* remove empty lines at the end of files
This commit is contained in:
Lars Kruse 2018-08-02 02:03:42 +02:00
parent ef851f0c34
commit 17f784270a
604 changed files with 2927 additions and 2945 deletions

View file

@ -21,7 +21,7 @@ $ ln -s /path/to/plugin/greyfix /etc/munin/plugins/greyfix
Configuration
=============
There are some settings that can be tweaked by adding statements to the
There are some settings that can be tweaked by adding statements to the
munin-node config:
[greyfix]
@ -36,10 +36,10 @@ env.num_steps 47
# graph the greylisted triplets separate from the whitelisted ones (default: yes)
env.greylist_step no
Please note that the last step has no end date, so it includes all triplets
older than the second last step. I.e., the defaults (as named above) create a
graph that shows 10 steps of one week each, and one last step for everything
older than 10 weeks. Also, the separate greylist step is not considered
Please note that the last step has no end date, so it includes all triplets
older than the second last step. I.e., the defaults (as named above) create a
graph that shows 10 steps of one week each, and one last step for everything
older than 10 weeks. Also, the separate greylist step is not considered
when applying num_steps.
"""
@ -72,7 +72,7 @@ def greyfix_parse_triplets():
if greyfix.returncode > 0:
print '# greyfix exited with exit code %i' % (greyfix.returncode)
sys.exit(greyfix.returncode)
triplets = []
for line in stdout.split("\n"):
triplet = line.split("\t")