/sensu-plugins-puppet

Sensu plugins for puppet

Primary LanguageRubyMIT LicenseMIT

Sensu-Plugins-puppet

Build Status Gem Version Code Climate Test Coverage Dependency Status Codeship Status for sensu-plugins/sensu-plugins-puppet

Functionality

check-puppet-last-run.rb

Files

  • /bin/checkpuppet-last-run.rb

Installation

Add the public key (if you haven’t already) as a trusted certificate

gem cert --add <(curl -Ls https://raw.githubusercontent.com/sensu-plugins/sensu-plugins.github.io/master/certs/sensu-plugins.pem)
gem install <gem> -P MediumSecurity

You can also download the key from /certs/ within each repository.

Rubygems

gem install sensu-plugins-puppet

Bundler

Add sensu-plugins-puppet to your Gemfile and run bundle install or bundle update

Chef

Using the Sensu sensu_gem LWRP

sensu_gem 'sensu-plugins-puppet' do
  options('--prerelease')
  version '0.1.0'
end

Using the Chef gem_package resource

gem_package 'sensu-plugins-puppet' do
  options('--prerelease')
  version '0.1.0'
end

Notes