mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
Improve perlpod formatting for multiple plugins
Escpecially the final marker ("=cut") was missing in these plugins.
This commit is contained in:
parent
743395a605
commit
c6f88968d1
20 changed files with 198 additions and 142 deletions
|
@ -2,24 +2,33 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
'''
|
||||
=head1 NAME
|
||||
|
||||
znc_logs
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Shows lines/minute in today's znc-logs
|
||||
|
||||
=head2 CONFIGURATION
|
||||
[znc_logs]
|
||||
user znc # or any other user/group that can read the znclog-folder
|
||||
group znc
|
||||
env.logdir /var/lib/znc/moddata/log/ # path to the GLOBAL log-folder with a "/" at the end
|
||||
env.expire 0 # Keep channel names forever - OR -
|
||||
env.expire 1 # Forget channel names from last run
|
||||
|
||||
[znc_logs]
|
||||
user znc # or any other user/group that can read the znclog-folder
|
||||
group znc
|
||||
env.logdir /var/lib/znc/moddata/log/ # path to the GLOBAL log-folder with a "/" at the end
|
||||
env.expire 0 # Keep channel names forever - OR -
|
||||
env.expire 1 # Forget channel names from last run
|
||||
|
||||
=head1 COPYRIGHT
|
||||
GPL VERSION 3
|
||||
|
||||
GNU General Public License v3.0 only
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-only
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Thor77 <thor77[at]thor77.org>
|
||||
|
||||
=cut
|
||||
'''
|
||||
import json
|
||||
import os, sys, time
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue