README 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. Nagios Plugins README
  2. =====================
  3. * For instructions on installing these plugins for use with Nagios,
  4. see below. In addition, generic instructions for the GNU toolchain can be
  5. found in the `INSTALL` file.
  6. * For major changes between releases, read the `NEWS` file.
  7. * For information on detailed changes that have been made or plugins
  8. that have been added, read the `ChangeLog` file.
  9. * Some plugins require that you have additional programs and/or
  10. libraries installed on your system before they can be used. Plugins that
  11. are dependent on other programs/libraries that are missing are usually not
  12. compiled. Read the `REQUIREMENTS` file for more information.
  13. * For a list of outstanding bugs for this release, see the `BUGS` file.
  14. * Individual plugins are self documenting. All plugins that comply with
  15. the basic guidelines for development will provide detailed help when
  16. invoked with the `-h` or `--help` options.
  17. You can check for the latest plugins at:
  18. * <https://sourceforge.net/projects/nagiosplug/>
  19. Send an email to <nagiosplug-help@lists.sourceforge.net> for assistance.
  20. Please include the OS type and version that you are using. Also, run the
  21. plugin with the `-vvv` option and provide the resulting version information.
  22. Of course, there may be additional diagnostic information required as well.
  23. Use good judgment.
  24. Send an email to <nagiosplug-devel@lists.sourceforge.net> for developer
  25. discussions.
  26. For patch submissions and bug reports, please use the appropriate resources
  27. at <https://github.com/nagios-plugins/nagios-plugins>.
  28. Installation Instructions
  29. -------------------------
  30. 1. If you are using the Git tree, you will need m4, gettext, automake, and
  31. autoconf. To start out, run:
  32. ./tools/setup
  33. For more detail, see the developer guidelines at
  34. <http://nagiosplug.sourceforge.net/developer-guidelines.html>.
  35. 2. Run the configure script to initialize variables and create a Makefile,
  36. etc.
  37. ./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
  38. * Replace `BASEDIRECTORY` with the path of the directory under which
  39. Nagios is installed (default is `/usr/local/nagios`).
  40. * Replace `CGIURL` with the path used to access the Nagios CGIs with a
  41. web browser (default is `/nagios/cgi-bin`).
  42. 3. Compile the plugins with the following command:
  43. make
  44. 4. Install the compiled plugins and plugin scripts with the following
  45. command:
  46. make install
  47. The installation procedure will attempt to place the plugins in a
  48. `libexec/` subdirectory in the base directory you specified with the
  49. `--prefix` argument to the configure script.
  50. 5. There are some plugins that require setuid. If you run make install as
  51. a non-root user, they will not be installed. To install, switch to root
  52. and run:
  53. make install-root
  54. That's it! If you have any problems or questions, feel free to send an
  55. email to <nagiosplug-help@lists.sourceforge.net>.
  56. License Stuff
  57. -------------
  58. This software is released under the GNU General Public License, Version 3,
  59. with the additional exemption that compiling, linking and/or using OpenSSL
  60. is allowed.
  61. See the `COPYING` file for the complete GPLv3 text.
  62. --
  63. Nagios Plugins Development Team