README 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Nagios Plugins
  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. * Individual plugins are self-documenting. All plugins that comply with
  14. the basic guidelines for development will provide detailed help when
  15. invoked with the `-h` or `--help` options.
  16. You can check for the latest plugins at:
  17. * <https://www.nagios-plugins.org/>
  18. Send an email to <help@nagios-plugins.org> for assistance. Please include
  19. the OS type and version that you are using. Also, run the plugin with the
  20. `-vvv` option and provide the resulting version information. Of course,
  21. there may be additional diagnostic information required as well. Use good
  22. judgment.
  23. Send an email to <devel@nagios-plugins.org> for developer discussions.
  24. For patch submissions and bug reports, please use the appropriate resources
  25. at:
  26. * <https://github.com/nagios-plugins>
  27. Installation Instructions
  28. -------------------------
  29. 1. If you are using the Git tree, you will need m4, gettext, automake, and
  30. autoconf. To start out, run:
  31. ./tools/setup
  32. For more detail, see the developer guidelines at
  33. <https://www.nagios-plugins.org/doc/guidelines.html>.
  34. 2. Run the configure script to initialize variables and create a Makefile,
  35. etc.
  36. ./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
  37. Replace `BASEDIRECTORY` with the path of the directory under which Nagios
  38. is installed (default is `/usr/local/nagios`), and replace `SOMEURL` with
  39. the path used to access the Nagios CGIs with a web browser (default is
  40. `/nagios/cgi-bin`).
  41. 3. Compile the plugins with the following command:
  42. make
  43. 4. Install the compiled plugins and plugin scripts with the following
  44. command:
  45. make install
  46. The installation procedure will attempt to place the plugins in a
  47. `libexec/` subdirectory in the base directory you specified with the
  48. `--prefix` argument to the configure script.
  49. 5. There are some plugins that require setuid. If you run make install as
  50. a non-root user, they will not be installed. To install, switch to root
  51. and run:
  52. make install-root
  53. That's it! If you have any problems or questions, feel free to send an
  54. email to <help@nagios-plugins.org>.
  55. License Notice
  56. --------------
  57. You can redistribute and/or modify this software under the terms of the GNU
  58. General Public License as published by the Free Software Foundation; either
  59. version 3 of the License, or (at your option) any later version; with the
  60. additional exemption that compiling, linking, and/or using OpenSSL is
  61. allowed.
  62. This software is distributed in the hope that it will be useful, but WITHOUT
  63. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  64. FITNESS FOR A PARTICULAR PURPOSE.
  65. See the `COPYING` file for the complete text of the GNU General Public
  66. License, version 3.