diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a027490 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# Ignore docs files +_gh_pages +_site +.ruby-version +.node-version +Gemfile.lock + +# Numerous always-ignore extensions +*.diff +*.err +*.orig +*.log +*.rej +*.swo +*.swp +*.zip +*.vi +*~ + +# OS or Editor folders +.DS_Store +._* +Thumbs.db +.cache +.project +.settings +.tmproj +*.esproj +nbproject +*.sublime-project +*.sublime-workspace +.idea + +# Komodo +*.komodoproject +.komodotools + +# grunt-html-validation +validation-status.json +validation-report.json + +# Folders to ignore +bin +node_modules +tmp +vendor +.bundle + +# Chef specifics to ignore +.chef +.chefdk +.kitchen +.kitchen.local.yml +.vagrant +Berksfile.lock +*.lock.json diff --git a/.kitchen.dokken.yml b/.kitchen.dokken.yml new file mode 100644 index 0000000..bbff811 --- /dev/null +++ b/.kitchen.dokken.yml @@ -0,0 +1,82 @@ +--- +driver: + name: dokken + chef_version: latest + privileged: true +transport: + name: dokken +provisioner: + name: dokken +verifier: + name: inspec +platforms: + - name: centos-7 + named_run_list: centos + driver: + image: centos:7 + platform: rhel + pid_one_command: /usr/lib/systemd/systemd + intermediate_instructions: + - RUN yum -y install lsof which systemd-sysv initscripts sudo + attributes: + poise-service: + redis: + provider: systemd + - name: centos-6 + named_run_list: centos + driver: + image: centos:6 + platform: rhel + pid_one_command: /sbin/init + intermediate_instructions: + - RUN yum -y install which initscripts sudo + - name: ubuntu-16.04 + named_run_list: debian + driver: + image: ubuntu:16.04 + pid_one_command: /bin/systemd + intermediate_instructions: + - RUN /usr/bin/apt-get update -y + - RUN /usr/bin/apt-get install sudo -y + attributes: + poise-service: + redis: + provider: systemd + - name: ubuntu-14.04 + named_run_list: debian + driver: + image: ubuntu:14.04 + pid_one_command: /sbin/init + intermediate_instructions: + - RUN /usr/bin/apt-get update -y + - RUN /usr/bin/apt-get install sudo -y + - name: ubuntu-12.04 + named_run_list: debian + driver: + image: ubuntu:12.04 + pid_one_command: /sbin/init + intermediate_instructions: + - RUN /usr/bin/apt-get update -y + - RUN /usr/bin/apt-get install sudo -y + - name: debian-8 + named_run_list: debian + driver: + image: debian:8 + pid_one_command: /bin/systemd + intermediate_instructions: + - RUN /usr/bin/apt-get update + - RUN /usr/bin/apt-get install lsb-release sudo -y + attributes: + poise-service: + redis: + provider: systemd + - name: debian-7 + named_run_list: debian + driver: + image: debian:7 + pid_one_command: /sbin/init + intermediate_instructions: + - RUN /usr/bin/apt-get update + - RUN /usr/bin/apt-get install lsb-release sudo -y +suites: + - name: default diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..1951c3b --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,48 @@ +--- +AllCops: + Exclude: + - 'Rakefile' + - 'Vagrantfile' + - 'Policyfile.rb' + - 'Berksfile' + - 'Gemfile' + - 'metadata.rb' + - 'test/**/*' + - 'bin/**' + - 'vendor/**/*' +AlignParameters: + Enabled: false +ClassLength: + Enabled: false +CyclomaticComplexity: + Enabled: false +Documentation: + Enabled: false +Encoding: + Enabled: false +Style/FileName: + Enabled: false +LineLength: + Enabled: false +MethodLength: + Enabled: false +Metrics/AbcSize: + Enabled: false +PerceivedComplexity: + Enabled: false +Style/SpaceBeforeFirstArg: + Enabled: false +Style/ClassAndModuleChildren: + Enabled: false +Style/FileName: + Enabled: false +Style/GuardClause: + Enabled: false +Style/PercentLiteralDelimiters: + Enabled: false +Style/ModuleFunction: + Enabled: false +Style/AlignHash: + Enabled: false +Style/SpaceInsideHashLiteralBraces: + Enabled: false diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0c43066 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,42 @@ +--- +sudo: required +dist: trusty +language: generic +cache: bundler +addons: + apt: + sources: + - chef-current-trusty + packages: + - chefdk +services: docker +env: + matrix: + - INSTANCE=default-centos-7 + - INSTANCE=default-centos-6 + - INSTANCE=default-ubuntu-1604 + - INSTANCE=default-ubuntu-1404 + - INSTANCE=default-ubuntu-1204 +before_script: + # https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889 + - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) + - eval "$(/opt/chefdk/bin/chef shell-init bash)" + - /opt/chefdk/embedded/bin/chef gem install kitchen-dokken + - /opt/chefdk/embedded/bin/chef --version + - /opt/chefdk/embedded/bin/cookstyle --version + - /opt/chefdk/embedded/bin/foodcritic --version +script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} +after_script: + - docker images + - docker ps -a + - cat .kitchen/logs/kitchen.log +matrix: + include: + - script: /opt/chefdk/embedded/bin/cookstyle + env: COOKSTYLE=1 + - script: /opt/chefdk/embedded/bin/foodcritic . --exclude spec -f any + env: FOODCRITIC=1 + - script: /opt/chefdk/embedded/bin/rspec --color --default-path test/spec + env: CHEFSPEC=1 +notifications: + slack: bloomberg-rnd:BvYmxrV9xj902XWTRNrkLNkR diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..44de656 --- /dev/null +++ b/Gemfile @@ -0,0 +1,23 @@ +source 'https://rubygems.org' + +group :lint do + gem 'cookstyle' + gem 'foodcritic' +end + +group :unit, :integration do + gem 'chefspec' + gem 'berkshelf' + gem 'test-kitchen' + gem 'serverspec' +end + +group :development do + gem 'awesome_print' + gem 'rake' + gem 'stove' +end + +group :doc do + gem 'yard' +end diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..5cb0232 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2012-2016, Noah Kantrowitz + Copyright 2016, Bloomberg Finance L.P. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Policyfile.rb b/Policyfile.rb new file mode 100644 index 0000000..2b84281 --- /dev/null +++ b/Policyfile.rb @@ -0,0 +1,8 @@ +name 'default' +default_source :community +default_source :chef_repo, '..' +cookbook 'chef-sentry-handler', path: '.' +run_list 'chef-sentry-handler::default' +named_run_list :centos, 'yum::default', 'yum-epel::default', run_list +named_run_list :debian, 'apt::default', run_list +named_run_list :freebsd, 'freebsd::default', run_list diff --git a/README.md b/README.md index de104f2..d570c09 100644 --- a/README.md +++ b/README.md @@ -1,47 +1,32 @@ -Description -=========== +# Chef Handler for Sentry -Configures and activates an error handler to send run failures to a [Sentry](htt://getsentry.com/) server. +Installs and configures a [Chef handler][0] for sending errors +to [Sentry][1]. -Requirements -============ +## Requirements -## Platform +Chef Client 12.1 or above. -Tested on Ubuntu 12.04 and higher. +## Platforms -## Cookbooks: +This cookbook has been verified to work on the following platforms: -Depends on the `chef_handler` cookbook to activate the error handler. +- Ubuntu 14.04/16.04 +- RHEL (CentOS) 5/6/7 +- AIX 7.1 +- Solaris 11 +- Windows 2008r2/2012r2 -Attributes -========== +## Usage -* `node['sentry']['dsn']` – **Required** The DSN for your Sentry server. -* `node['sentry']['enabled']` - Boolean to enable/disable the error reporter. Defaults to `true`. +All you need to do is set the `node['sentry']['options']['dsn']` value and add +the default recipe of this cookbook to your run-list. You can do this +from a wrapper cookbook recipe: -Usage -===== +``` ruby +node.default['sentry']['options']['dsn'] = 'https://xxxx:yyyy@sentry.corporate.com/1' +include_recipe 'chef-sentry-handler::default' +``` -Simply add the `chef-sentry-handler` recipe to your base role, preferably at the front -of the run list to ensure any subsequent errors are reported, and then set the -DSN in the node attributes. - -License and Author -================== - -Author:: Noah Kantrowitz () - -Copyright:: 2012, Noah Kantrowitz - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. +[0]: https://docs.chef.io/handlers.html +[1]: https://getsentry.com diff --git a/Rakefile b/Rakefile new file mode 100755 index 0000000..82154a7 --- /dev/null +++ b/Rakefile @@ -0,0 +1,39 @@ +#!/usr/bin/env rake + +require 'bundler/setup' +require 'rspec/core/rake_task' +require 'rubocop/rake_task' +require 'foodcritic' +require 'kitchen' + +namespace :style do + desc 'Run Ruby style checks' + RuboCop::RakeTask.new(:ruby) + + desc 'Run Chef style checks' + FoodCritic::Rake::LintTask.new(:chef) +end + +desc 'Run all style checks' +task style: ['style:chef', 'style:ruby'] + +desc 'Run ChefSpec unit tests' +RSpec::Core::RakeTask.new(:unit) do |t| + t.pattern = 'test/unit/**{,/*/**}/*_spec.rb' +end + +# Integration tests. Kitchen.ci +desc 'Run Test Kitchen with Vagrant' +task :vagrant do + Kitchen.logger = Kitchen.default_file_logger + Kitchen::Config.new.instances.each do |instance| + instance.test(:always) + end +end + +desc 'Run style & unit tests on Travis' +task travis: %w(style unit) + +# Default +desc 'Run style, unit, and Vagrant-based integration tests' +task default: %w(style unit vagrant) diff --git a/attributes/default.rb b/attributes/default.rb index 1bdba02..1c22415 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -1,3 +1,22 @@ -default['sentry']['dsn'] = nil -default['sentry']['enabled'] = true -default['sentry']['verify_ssl'] = true +# +# Copyright 2012-2016, Noah Kantrowitz +# Copyright 2016, Bloomberg Finance L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +default['sentry']['options']['dsn'] = nil +default['sentry']['options']['ssl_verify'] = true +default['sentry']['options']['environment'] = node.chef_environment + +default['sentry']['gem_version'] = '2.7.2' diff --git a/files/default/sentry.rb b/files/default/sentry.rb index 026bd85..7c2e5e9 100644 --- a/files/default/sentry.rb +++ b/files/default/sentry.rb @@ -1,35 +1,64 @@ +# +# Copyright 2012-2016, Noah Kantrowitz +# Copyright 2016, Bloomberg Finance L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +require 'chef' +require 'chef/handler' require 'raven' -module Raven - module Chef - class SentryHandler < ::Chef::Handler - def initialize(node) - Raven.configure(true) do |config| - config.ssl_verification = node['sentry']['verify_ssl'] - config.dsn = node['sentry']['dsn'] - config.logger = ::Chef::Log - config.current_environment = node.chef_environment - config.environments = [node.chef_environment] - config.send_modules = Gem::Specification.respond_to?(:map) - end - Raven.logger.debug "Raven ready to report errors" - end +# A handler which uses the Raven gem to report errors to Sentry. +# @see https://docs.chef.io/resource_chef_handler.html +# @since 1.0 +class Chef::Handler::Sentry < Chef::Handler + def initialize(options = {}) + Raven.configure do |config| + config.logger = Chef::Log + config.dsn = options[:dsn] + config.ssl_verification = options[:ssl_verify] + config.current_environment = options[:environment] + config.environments = [options[:environment]] + config.send_modules = Gem::Specification.respond_to?(:map) + end + + if options[:dsn] + Raven.logger.debug 'Raven ready to reports errors to Sentry' + else + Raven.logger.warn "node['sentry']['options']['dsn'] is not set! Raven will not send errors to Sentry!" + end + end - def report - return if success? - Raven.logger.info "Logging run failure to Sentry server" - if exception - evt = Raven::Event.capture_exception(exception) - else - evt = Raven::Event.new do |evt| - evt.message = "Unknown error during Chef run" - evt.level = :error - end - end - # Use the node name, not the FQDN - evt.server_name = node.name - Raven.send(evt) - end + def report + return if success? + event = if exception + Raven::Event.capture_exception(exception) + else + Raven::Event.new do |e| + e.message = 'Unknown fatal error during Chef run' + e.level = :fatal + end + end + event.server_name = node.name + event.release = node['policy_revision'] if node['policy_revision'] + event.timestamp = run_status.start_time + event.time_spent = run_status.elapsed_time + event.extra = { run_id: run_status.run_id }.tap do |h| + h[:policy_name] = node.policy_name if node.policy_name + h[:policy_group] = node.policy_group if node.policy_group + h[:policy_revision] = node['policy_revision'] if node['policy_revision'] end + Raven.send_event(event) end end diff --git a/metadata.rb b/metadata.rb index 782c6d8..6e3ea78 100644 --- a/metadata.rb +++ b/metadata.rb @@ -1,9 +1,13 @@ -name "chef-sentry-handler" -maintainer "Noah Kantrowitz" -maintainer_email "noah@coderanger.net" -license "Apache 2.0" -description "Report failed runs to Sentry" -long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version "1.0.0" +name 'chef-sentry-handler' +maintainer 'John Bellone' +maintainer_email 'jbellone@bloomberg.net' +license 'Apache 2.0' +description 'Installs and configures a Chef handler for sending errors to Sentry.' +long_description 'Installs and configures a Chef handler for sending errors to Sentry.' +version '2.2.0' +chef_version '>= 12.1' -depends "chef_handler" +depends 'chef_handler', '~> 2.0' + +issues_url 'https://github.com/johnbellone/chef-sentry-handler/issues' +source_url 'https://github.com/johnbellone/chef-sentry-handler' diff --git a/recipes/default.rb b/recipes/default.rb index e07741e..e2b5258 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -1,31 +1,37 @@ -# Make sure the handlers folder exists -directory node["chef_handler"]["handler_path"] do - owner "root" - group "root" - mode "755" - recursive true - action :nothing -end.run_action(:create) +# +# Copyright 2012-2016, Noah Kantrowitz +# Copyright 2016, Bloomberg Finance L.P. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# -chef_gem "uuidtools" +include_recipe 'chef_handler::default' -chef_gem "sentry-raven" do - version "0.9.4" +chef_gem 'sentry-raven' do + action :upgrade + version node['sentry']['gem_version'] + compile_time true end -handler_file = ::File.join(node["chef_handler"]["handler_path"], 'sentry.rb') - -cookbook_file handler_file do - source "sentry.rb" - owner "root" - group "root" - mode "644" +cookbook_file File.join(node['chef_handler']['handler_path'], 'sentry.rb') do action :nothing + source 'sentry.rb' + mode '0644' end.run_action(:create) -chef_handler "Raven::Chef::SentryHandler" do - source handler_file - supports({:exception => true}) - arguments [node] +chef_handler 'Chef::Handler::Sentry' do action :nothing -end.run_action(node['sentry']['enabled'] ? :enable : :disable) + source File.join(node['chef_handler']['handler_path'], 'sentry.rb') + arguments node['sentry']['options'] + supports exception: true, report: true, start: false +end.run_action(:enable) diff --git a/test/integration/default/default_spec.rb b/test/integration/default/default_spec.rb new file mode 100644 index 0000000..ad7d1db --- /dev/null +++ b/test/integration/default/default_spec.rb @@ -0,0 +1,4 @@ +describe file('/var/chef/handlers/sentry.rb') do + it { should exist } + it { should be_file } +end