Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

nrpe (50) Versions 5.0.0

Provides custom resources to install and configure Nagios NRPE

Policyfile
Berkshelf
Knife
cookbook 'nrpe', '~> 5.0.0', :supermarket
cookbook 'nrpe', '~> 5.0.0'
knife supermarket install nrpe
knife supermarket download nrpe
README
Dependencies
Changelog
Quality 50%

nrpe cookbook

Cookbook Version
Build Status
OpenCollective
OpenCollective
License

Chef cookbook to install Nagios NRPE client (was previously part of the Nagios cookbook)

This cookbook is a custom-resource cookbook. Legacy recipes and node attributes have been
removed; see [migration.md](migration.md) for migration examples.

Maintainers

This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org or come chat with us on the Chef Community Slack in #sous-chefs.

Requirements

Chef

Chef 15.3+

Platform

  • Debian
  • FreeBSD
  • Ubuntu
  • RHEL including CentOS and Oracle Linux
  • Amazon Linux (2.x cannot be installed via package)
  • Fedora
  • SUSE / openSUSE

Notes: This cookbook has been tested on the listed platforms. It may work on other platforms with or without modification.

Resources

  • [nrpe](documentation/nrpe_nrpe.md)
  • [nrpe_check](documentation/nrpe_check.md)

nrpe

Installs NRPE from packages or source, installs plugins, renders server configuration, manages
allowed hosts, and enables/starts the service.

nrpe 'default' do
  allowed_hosts %w(192.0.2.10)
end

nrpe_check

The check resource provides an easy way to add and remove NRPE checks from within cookbooks.

Actions

  • :add creates a NRPE configuration file and reloads the NRPE process. Default action.
  • :remove removes the configuration file and reloads the NRPE process

Properties

  • command_name The name of the check. This is the command that you will call from your nagios_service data bag check
  • warning_condition String that you will pass to the command with the -w flag
  • critical_condition String that you will pass to the command with the -c flag
  • command The actual command to execute (including the path). If this is not specified, this will use plugin_dir/command_name as the path to the command.
  • parameters Any additional parameters you wish to pass to the plugin.
  • template Use the specific erb template to render NRPE config command.

Examples

# Use resource to define check_load
nrpe_check "check_load" do
  command '/usr/lib/nagios/plugins/check_load'
  warning_condition '10'
  critical_condition '15'
  action :add
end
# Remove the check_load definition
nrpe_check "check_load" do
  action :remove
end

Using template:

nrpe_check "check_load" do
  template "check_load.cfg.erb"
  action :add
end

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers!

https://opencollective.com/sous-chefs#backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

https://opencollective.com/sous-chefs/sponsor/0/website
https://opencollective.com/sous-chefs/sponsor/1/website
https://opencollective.com/sous-chefs/sponsor/2/website
https://opencollective.com/sous-chefs/sponsor/3/website
https://opencollective.com/sous-chefs/sponsor/4/website
https://opencollective.com/sous-chefs/sponsor/5/website
https://opencollective.com/sous-chefs/sponsor/6/website
https://opencollective.com/sous-chefs/sponsor/7/website
https://opencollective.com/sous-chefs/sponsor/8/website
https://opencollective.com/sous-chefs/sponsor/9/website

CHANGELOG for nrpe

This file is used to list changes made in each version of nrpe

5.0.0 (2026-05-07)

⚠ BREAKING CHANGES

  • migrate nrpe to custom resources (#173)

Features

Bug Fixes

  • ci: Update workflows to use release pipeline (#167) (f4964b3)

4.0.19 (2025-10-15)

Bug Fixes

  • ci: Update workflows to use release pipeline (#167) (f4964b3)

4.0.12 - 2023-06-08

Standardise files with files in sous-chefs/repo-management

4.0.8 - 2023-03-22

  • Standardise files with files in sous-chefs/repo-management
  • Update overcommit
  • Update yamllint
  • Update Renovate config

4.0.7 - 2023-02-14

  • Standardise files with files in sous-chefs/repo-management

4.0.6 - 2023-02-14

  • Standardise files with files in sous-chefs/repo-management

4.0.5 - 2023-02-14

  • Standardise files with files in sous-chefs/repo-management

4.0.4 - 2022-02-08

  • Remove delivery folder

4.0.3 - 2022-02-01

  • Update tested platforms

4.0.2 - 2022-01-25

  • Cookstyle fixes

4.0.1 - 2021-08-30

  • Standardise files with files in sous-chefs/repo-management

4.0.0 - 2021-07-21

  • Enable unified_mode for Chef 17 compatibility
  • Bump minimum Chef version to 15.3

3.0.1 (2020-05-05)

  • Add bin_dir to nrpe version check

3.0.0 (2020-01-26)

  • Require Chef Infra Client 14 or later
  • Fix failing openSUSE source installs by adding gzip as a dependency package
  • Better check for systemd platforms
  • Don't rely on the build-essential cookbook now that build_essential resource is built-in
  • Resolve all the latest cookstyle warnings
  • Update .gitignore and chefignore files to newer versions
  • Move the test cookbook into an integration group in the Berksfile
  • Move the template files out of the templates/default directory and just put them in templates/
  • Remove the .foodcritic that was no longer needed as all rules pass
  • Remove the Gemfile that was used to install stove which is part of Chef DK and Workstation now
  • Add the latest platforms the kitchen configs

2.1.0 (2019-10-31)

  • Remove windows references and use Chef defaults for file and template resources
  • Update checks for node['platform_family'] to handle amazon
  • Respect NRPE version attribute
  • Update NRPE version for source installs to 3.2.1
  • Systemd tmpfiles config updated to create the nrpe directory in the run directories for the configured pid directory
  • Removed the unnecessary long_description metadata in metadata.rb
  • Updated platform checks to use platform? and platform_family? everywhere
  • Removed if respond_to checks in metadata.rb
  • Simplified ChefSpecs to avoid the need to update them for new platform releases

2.0.5 (2018-12-14)

  • Backport systemd unit from the package install to the cookbook

2.0.4 (2018-12-14)

  • Allow Windows users to use the nrpe_check resource

2.0.3 (2018-02-18)

  • Allow IPv6 localhost ::1

2.0.2 (2017-07-13)

  • Fix broken template

2.0.1 (2017-07-13)

  • Allow option to disable PID file as it's not needed by systemd and causes issues with SELinux at this time

2.0.0 (2017-03-03)

  • Convert the check LWRP to a custom resource with simplified restart logic. This increases the requirement of Chef to 12.9 or later
  • Add support for package installs on openSUSE Leap
  • Update RHEL platforms to use the nrpe user and pid file defined in the package
  • Remove logic which built node['nrpe']['checks'] as it broke on modern Chef clients
  • Added Chefspec matchers for the check resource
  • Use multi-package installs to speed up package installs
  • Simplify the Fedora check in the attributes file
  • Rework test kitchen testing and test the check resource in Travis
  • Switch from testing in Rake to Delivery local mode

1.6.4 (2016-09-07)

  • Only restart NRPE at the end of the chef-run

1.6.3 (2016-08-12)

  • Updated cookbook to support nrpe 3.0 using source install method
  • Added ability to define node['nrpe']['bin_dir'] default to /usr/sbin
  • Removed duplicate line from README.md for node['nrpe']['conf_dir'] attribute

1.6.2 (2016-08-12)

  • Fixing service reload/restart issue
  • Fixing the use_inline_resources error on chef 12 client

1.6.0 (2016-07-21)

  • Added support for openSUSE via source install
  • Added chef_version to the metadata
  • Updated the monitoring plugins to 2.1.2 for source installs
  • Fixed user/group creation in the source recipe, which would fail chef runs
  • Fixed source installs for systemd based distros by properly managing the unit file
  • Resolved a scenario where the NRPE compilation could fail and never run again
  • Ensured we run the NRPE process using our attribute defined user/group in the source recipe
  • Ensured NRPE is compiled into /usr/sbin not /usr/bin so init / systemd files work
  • Require Chef 11. Chef 10 is end of life moving to Chef 11 allows us to remove Ruby 1.8.7 backwards compatibility
  • Removed support for Fedora < 17
  • Enabled caching the Chefspecs to speedup runs 3.5X
  • Removed make from source installs as build-essential already handles this
  • Added a Rakefile for simplified testing
  • Disabled FC003 with a .foodcritic file
  • Removed the Vagrantfile as we already have a Kitchen file
  • Switched from Rubocop to Cookstyle and resolve all warnings
  • Added yum to the Berksfile for integration testing
  • Removed chef-solo-search from the Berksfile as we don't need this for testing -

1.5.4

  • Documentation fix for pid_file attribute
  • Make sure that systemd unit file matches the nrpe user attribute

1.5.3

  • Add template support for config files
  • Remove node.set in default recipe (Issue #27)

1.5.2

  • Fedora 20+ / RHEL 7+ systems now run the daemon as nrpe/nrpe since the user installed by the package changed
  • Fedora 20+ / RHEL 7+ systems now restart on check updates since the systemd scipt doesn't include a reload action
  • Removed the retry count for starting the NRPE service, which didn't fix the real issue on RHEL 7+

1.5.0

  • Added 3 retries with a delay of 3 to the nrpe service start for RHEL/CentOS 7
  • Added ability to define node['nrpe']['packages'] as a Hash to add version information as sample below. In your environment specific cookbook, this version infomation for each individual package can be overriden for required versions (instead of latest one). If it is nil it will install latest one from repositories.

Sample: default['nrpe']['packages'] = { 'nagios-nrpe-server' => {'version' => nil}, 'nagios-plugins' => {'version' => nil}, 'nagios-plugins-basic' => {'version' => nil}, 'nagios-plugins-standard' => {'version' => nil} }

For backward compatibiility, it will also install packages if it is defined as an array in your env specific cookbook.

1.4.12

  • Added default['nrpe']['checks'] to store all checks as a node attribute
  • Removed Ruby 1.9.3 and added Ruby 2.2.0 to Travis
  • Make the yum-epel recipe optional with default['nrpe']['install_yum-epel']

1.4.10

  • Add support for CentOS / RHEL
  • Update the LWRP to use the default action functionality introduced in Chef 0.10.10

1.4.8

  • Rubocop fixes
  • Remove .DS_Store files in the supermarket file that caused failures on older versions of Berkshelf
  • Remove strainer gem from Gemfile

1.4.6

  • Update specs to Chefspec 4.1
  • Add additional platforms to the Vagrantfile
  • Fix a compile error / logic error when running on Fedora

1.4.4

  • Add a chefignore file so that Berkshelf wont fail on dsstore files

1.4.2

  • NRPE running on a Nagios server would not enable polling from other Nagios servers

1.4.0

  • Update from nagios-plugins to monitoring-plugins in source installs since the project name changed
  • Update nagios-plugins 1.5 to 2.0 for source installs
  • Reorder the attributes so that FreeBSD has log_facility properly set
  • Add additional specs and update specs to the latest Debian / FreeBSD releases
  • Update Berkshelf to 3.1.X and update the Berksfile to the new format

1.3.0

  • Source lsb init-functions in the init script on Ubuntu source installs so the service doesn't start every run
  • Added new attribute node['nrpe']['allow_bash_command_substitution'] to allow using the allow_bash_command_substitution config option
  • When searching the the monitoring role search for roles vs. role so the monitoring role can be nested on the run_list
  • Sort and Unique the array of allowed monitor hosts. This prevents NRPE from restarting on every run when the results come back in a different order
  • Fix deprecated warning when running specs

1.2.0

  • Add status / reload commands to the init script for source installs resolving issues with the service on source installs
  • Add new node['nrpe']['package']['options'] attribute for adding install options to the package install
  • Add Ubuntu 14.04 to the Test Kitchen config and remove Ubuntu 13.04
  • Add source install suite to Test Kitchen

1.1.2

  • Include an example base monitoring recipe with base NRPE checks defined
  • Fix the LWRP example in the Readme to reflect the current state of the cookbook

1.1.0

  • Added a server_address attribute to allow binding NRPE to the IP of a specific interface
  • Added a server_port attribute to allow changing the NRPE port
  • Added a command_prefix attribute to allow prefixing all commands with another command such as sudo
  • Minor fixes to the readme

1.0.6

  • Reload NRPE instead of restarting it when a new check is added
  • Fix log_facility in the NRPE config to write out on its own line vs clobbering the config

1.0.4

  • Expanded the chefspecs to multiple platforms and install methods
  • Fixed a bug where the plugin dir wasn't defined for RHEL platforms causing source install failures

1.0.2

  • Add chefspecs
  • Fix test kitchen setup on FreeBSD
  • Lint fixes with Rubocop
  • Nagios plugin_dir for Debian/Ubuntu was incorrect. Should always be /usr/lib/nagios/plugins regardless of CPU arch
  • Update readme to remove several references to the old Nagios cookbook

1.0.0

  • Initial release of the cookbook with client functionality split from the existing nagios cookbook

Collaborator Number Metric
            

5.0.0 passed this metric

Contributing File Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Cookstyle Metric
            

5.0.0 passed this metric

No Binaries Metric
            

5.0.0 passed this metric

Testing File Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number

Copyright © 2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.

Progress and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.
See Trademarksfor appropriate markings. All rights in any other trademarks contained herein are reserved by their respective owners and their inclusion does not imply an endorsement, affiliation, or sponsorship as between Progress and the respective owners.

Code of Conduct Terms and Conditions of Use Privacy Policy Cookie Policy Trademark Policy Status