summaryrefslogtreecommitdiffstats
path: root/web/input/doc/faq
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
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')
-rw-r--r--web/input/doc/faq/build-perl-module.md4
-rw-r--r--web/input/doc/faq/index.md4
-rw-r--r--web/input/doc/faq/use-perl-module.md18
3 files changed, 13 insertions, 13 deletions
diff --git a/web/input/doc/faq/build-perl-module.md b/web/input/doc/faq/build-perl-module.md
index 8c6f2ac..fe9e85d 100644
--- a/web/input/doc/faq/build-perl-module.md
+++ b/web/input/doc/faq/build-perl-module.md
@@ -1,8 +1,8 @@
1title: Building Nagios::Plugin 1title: Building Monitoring::Plugin
2parent: FAQ 2parent: FAQ
3--- 3---
4 4
5# How do I build Nagios::Plugin? 5# How do I build Monitoring::Plugin?
6 6
7This is currently an optional setting at configure time. You need to run: 7This is currently an optional setting at configure time. You need to run:
8 8
diff --git a/web/input/doc/faq/index.md b/web/input/doc/faq/index.md
index 6b01670..e67e7a5 100644
--- a/web/input/doc/faq/index.md
+++ b/web/input/doc/faq/index.md
@@ -20,7 +20,7 @@ Plugins.
20* [How do I compile the plugins?][compilation] 20* [How do I compile the plugins?][compilation]
21* [The configure script appears to hang][configure-hangs] 21* [The configure script appears to hang][configure-hangs]
22* [Why doesn't the --ssl option work?][ssl] 22* [Why doesn't the --ssl option work?][ssl]
23* [How do I build the Nagios::Plugin module?][build-perl-module] 23* [How do I build the Monitoring::Plugin module?][build-perl-module]
24* [Building check\_mysql fails on Solaris][mixing-compilers] 24* [Building check\_mysql fails on Solaris][mixing-compilers]
25* [Why use pst3 for check\_procs on Solaris?][ps-on-solaris] 25* [Why use pst3 for check\_procs on Solaris?][ps-on-solaris]
26 26
@@ -40,7 +40,7 @@ Plugins.
40* [Can I add extra tests to the C routines?][extra-tests] 40* [Can I add extra tests to the C routines?][extra-tests]
41* [How do the NPTest parameters work?][nptest] 41* [How do the NPTest parameters work?][nptest]
42* [How do I use and update Gnulib?][gnulib] 42* [How do I use and update Gnulib?][gnulib]
43* [How do I use the Nagios::Plugin module?][use-perl-module] 43* [How do I use the Monitoring::Plugin module?][use-perl-module]
44* [How do I modify NagiosMIB?][nagiosmib] 44* [How do I modify NagiosMIB?][nagiosmib]
45* [Can I reuse Monitoring Plugins code?][reuse] 45* [Can I reuse Monitoring Plugins code?][reuse]
46 46
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: # %-->