Code

Reference to CHANGES file
[nagiosplug.git] / README
1 Nagios Plugins README
2 ---------------------
4 * For instructions on installing these plugins for use with Nagios,
5   see below. In addition, generic instructions for the GNU toolchain
6   can be found in the INSTALL file.
8 * For major changes between releases, read the CHANGES file.
10 * For information on detailed changes that have been made or plugins 
11   that have been added, read the Changelog file.
13 * Some plugins require that you have additional programs and/or
14   libraries installed on your system before they can be used.  Plugins
15   that are dependent on other programs/libraries that are missing are
16   usually not compiled. Read the REQUIREMENTS file for more information.
18 * Individual plugins are self documenting.  All plugins that comply with
19   the basic guidelines for development will provide detailed help when
20   invoked with the '-h' or '--help' options.
22 * The file command.cfg contains example configurations for many of the
23   plugins
25 You can check for the latest plugins at:
26   ftp://download.sourceforge.net/pub/sourceforge/nagiosplug
27   http://sourceforge.net/projects/nagiosplug/
29 Send mail to nagiosplug-help@lists.sourceforge.net for assistance.  Please
30 include the OS type and version that you are using.  Also, run the plugin with
31 the '-v' option and provide the resulting version information.  Of course, 
32 there may be additional diagnostic information required as well.  Use good
33 judgment.
35 Send mail to nagiosplug-devel@lists.sourceforge.net for developer discussions.
37 For patch submissions and bug reports, please use the appropriate resources at
38 http://sourceforge.net/projects/nagiosplug/ (navigate to the bug tool and/or
39 patch tool from the summary page).  Patches should be relative to the current
40 CVS head (development), or to the head of the current stable branch. Also, 
41 please include version information for your OS and the plugin(s) your are 
42 patching/reporting.
47 Nagios Plugins Quick-and-Dirty Installation Instructions
48 --------------------------------------------------------
50 0) If using the CVS tree, you need m4, gettext, automake, and autoconf. To
51    start out, run ./tools/setup
53    For development, we generally use the most recent stable tools from
54    the FSF. Currently we use gettext 0.11.5, autoconf 2.58, and
55    automake 1.7.9. You may see warnings or errors with other versions,
56    particularly with autoconf < 2.54.
59 1) Run the configure script to initialize variables and create a Makefile, etc.
61         ./configure --prefix=BASEDIRECTORY --with-nagios-user=SOMEUSER --with-nagios-group=SOMEGROUP --with-cgiurl=SOMEURL
63    a) Replace BASEDIRECTORY with the path of the directory under which Nagios
64       is installed (default is '/usr/local/nagios')
65    b) Replace SOMEUSER with the name of a user on your system that will be
66       assigned permissions to the installed plugins (default is 'nagios')
67    c) Replace SOMEGRP with the name of a group on your system that will be
68       assigned permissions to the installed plugins (default is 'nagios')
69    d) Replace CGIURL with the path used to access the Nagios CGIs with
70       a web browser (default is '/nagios/cgi-bin')
73 2) Compile the plugins with the following command:
75         make
78 3) Install the compiled plugins and plugin scripts with the following command:
80         make install
82    The installation procedure will attempt to place the plugins in a 
83    'libexec/' subdirectory in the base directory you specified with
84    the --prefix argument to the configure script.
87 4) Verify that your host configuration file (hosts.cfg) for Nagios contains
88    the correct paths to the new plugins.
92 That's it.  If you have any problems or questions, feel free send mail
93 to nagios-users@lists.sourceforge.net or nagiosplug-help@lists.sourceforge.net
98 --
99 Karl DeBisschop (kdebisschop@users.sourceforge.net)