summaryrefslogtreecommitdiffstats
path: root/web/input/doc/faq/use-perl-module.md
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-01-22 07:54:05 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-01-22 07:54:05 (GMT)
commit7dd4264a11d7628df4c806eadaeca1c4115e1fc8 (patch)
tree1e7850ad989f1d9b9c4ca546eb5b75cfffcdff0b /web/input/doc/faq/use-perl-module.md
parent01f275f0537a0f919686bd5b1ad8c46279577788 (diff)
downloadsite-7dd4264a11d7628df4c806eadaeca1c4115e1fc8.tar.gz
s/Nagios::Plugin/Monitoring::Plugin/
The Nagios::Plugin module has been renamed to Monitoring::Plugin.
Diffstat (limited to 'web/input/doc/faq/use-perl-module.md')
-rw-r--r--web/input/doc/faq/use-perl-module.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/web/input/doc/faq/use-perl-module.md b/web/input/doc/faq/use-perl-module.md
index d624e5f..3ac5674 100644
--- a/web/input/doc/faq/use-perl-module.md
+++ b/web/input/doc/faq/use-perl-module.md
@@ -1,10 +1,10 @@
1title: Using Nagios::Plugin 1title: Using Monitoring::Plugin
2parent: FAQ 2parent: FAQ
3--- 3---
4 4
5# How do I use the Nagios::Plugin module? 5# How do I use the Monitoring::Plugin module?
6 6
7The Nagios::Plugin Perl module can be obtained from two main locations: 7The Monitoring::Plugin Perl module can be obtained from two main locations:
8 8
9* from the Monitoring Plugins tarball with an 9* from the Monitoring Plugins tarball with an
10 [extra configure option][configure-module] 10 [extra configure option][configure-module]
@@ -20,18 +20,18 @@ To write your plugin, you should start it with:
20 20
21 use FindBin; 21 use FindBin;
22 use lib "$FindBin::Bin/../perl/lib"; 22 use lib "$FindBin::Bin/../perl/lib";
23 use Nagios::Plugin; 23 use Monitoring::Plugin;
24 24
25This bit of code tells Perl to look for the Nagios::Plugin module in a 25This bit of code tells Perl to look for the Monitoring::Plugin module in a
26directory relative to where the plugin is executed - this is a hard 26directory relative to where the plugin is executed - this is a hard
27dependency. If Nagios::Plugin is not found there, Perl's system directories 27dependency. If Monitoring::Plugin is not found there, Perl's system directories
28will be searched. 28will be searched.
29 29
30This approach allows a system administrator to decide whether they want 30This approach allows a system administrator to decide whether they want
31Nagios::Plugin installed via system directories or within the `$prefix` area 31Monitoring::Plugin installed via system directories or within the `$prefix` area
32of the plugins. 32of the plugins.
33 33
34[configure-module]: doc/faq/build-perl-module.html "configure with Nagios::Plugin" 34[configure-module]: doc/faq/build-perl-module.html "configure with Monitoring::Plugin"
35[cpan-module]: http://search.cpan.org/dist/Nagios-Plugin/ "Nagios::Plugin on CPAN" 35[cpan-module]: http://search.cpan.org/dist/Monitoring-Plugin/ "Monitoring::Plugin on CPAN"
36 36
37<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %--> 37<!--% # vim:set filetype=markdown textwidth=78 joinspaces: # %-->