README 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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
  5. can be 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
  11. that are dependent on other programs/libraries that are missing are
  12. usually not 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. http://sourceforge.net/projects/nagiosplug/
  19. Send mail to nagiosplug-help@lists.sourceforge.net for assistance. Please
  20. include the OS type and version that you are using. Also, run the plugin with
  21. the '-vvv' option and provide the resulting version information. Of course,
  22. there may be additional diagnostic information required as well. Use good
  23. judgment.
  24. Send mail to nagiosplug-devel@lists.sourceforge.net for developer discussions.
  25. For patch submissions and bug reports, please use the appropriate resources at
  26. https://github.com/nagios-plugins/nagios-plugins/. Also, please include
  27. version information for your OS and the plugin(s) your are patching/reporting.
  28. Nagios Plugins Quick-and-Dirty Installation Instructions
  29. --------------------------------------------------------
  30. 0) If you are using the Git tree, you will need m4, gettext, automake, and autoconf.
  31. To start out, run ./tools/setup
  32. For more detail, see the developer guidelines at
  33. http://nagiosplug.sourceforge.net/developer-guidelines.html.
  34. 1) Run the configure script to initialize variables and create a Makefile, etc.
  35. ./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
  36. a) Replace BASEDIRECTORY with the path of the directory under which Nagios
  37. is installed (default is '/usr/local/nagios')
  38. b) Replace CGIURL with the path used to access the Nagios CGIs with
  39. a web browser (default is '/nagios/cgi-bin')
  40. 2) Compile the plugins with the following command:
  41. make
  42. 3) Install the compiled plugins and plugin scripts with the following command:
  43. make install
  44. The installation procedure will attempt to place the plugins in a
  45. 'libexec/' subdirectory in the base directory you specified with
  46. the --prefix argument to the configure script.
  47. 4) There are some plugins that require setuid. If you run make install as
  48. a non root user, they will not be installed. To install, switch to root and
  49. run:
  50. make install-root
  51. That's it! If you have any problems or questions, feel free send mail
  52. to nagiosplug-help@lists.sourceforge.net
  53. LICENSE STUFF
  54. -------------
  55. This software is released under the GNU Public License, Version 3, with the
  56. additional exemption that compiling, linking and/or using OpenSSL is
  57. allowed.
  58. See the COPYING file for the complete GPLv3 text.
  59. --
  60. Nagios Plugins Team