cookbook 'snoopy', '= 1.0.1'
snoopy (6) Versions 1.0.1 Follow2
Installs/configures Snoopy Logger
cookbook 'snoopy', '= 1.0.1', :supermarket
knife supermarket install snoopy
knife supermarket download snoopy
Snoopy Cookbook
A Chef cookbook for Snoopy Logger.
Because there is no Snoopy package easily available for RHEL, and the one for
Ubuntu 14.04 is extremely old, this cookbook uses newer packages that we
build ourselves and store
in PackageCloud.io.
Requirements
This cookbook currently supports Ubuntu only. It intentionally maintains
backward compatibility with Chef 11, at the expense of some minor additional
complexity.
Usage
Either add the snoopy
default recipe to your node's run_list, or make use of
the included Chef resources in a recipe of your own.
Recipes
default
Set up the proper package repository; install Snoopy; configure it; and enable
it on the system, all in an attribute-driven fashion.
Attributes
default
default['snoopy']['app']['source'] = nil
An optional custom file path or URL to a Snoopy package to install.
default['snoopy']['config'] = nil
An optional hash of config overrides, in underscore format, to pass into
Snoopy's config.
Resources
snoopy
A parent resource that couples an app, config, and service resource together.
Syntax:
snoopy 'default' do
source '/tmp/snoopy.deb'
config filterchain: 'exclude_uid:0'
action :create
end
Actions:
Action | Description |
---|---|
:create |
Install, configure, and enable Snoopy |
:remove |
Disable and uninstall Snoopy |
Attributes:
Attribute | Default | Description |
---|---|---|
source | nil |
An optional package source path/URL |
config | nil |
An optional hash of configuration overrides |
action | :install |
Action(s) to perform |
snoopy_app
The resource that manages installation of the Snoopy repo and packages.
Syntax:
snoopy_app 'default' do
source '/tmp/snoopy.deb'
action :install
end
Actions:
Action | Description |
---|---|
:install |
Enable the custom package repo and install Snoopy |
:remove |
Uninstall Snoopy and disable the package repo |
Attributes:
Attribute | Default | Description |
---|---|---|
source | nil |
An optional package source path/URL |
action | :install |
Action(s) to perform |
snoopy_config
The child resource for handling Snoopy's configuration.
Syntax:
snoopy_config 'default' do
config { some_option_key: 'some_option_value' }
action :install
end
Actions:
Action | Description |
---|---|
:create |
Render the config |
:remove |
Delete the config |
Attributes:
Attribute | Default | Description |
---|---|---|
config | nil |
Optional hash of config overrides |
action | :install |
Action(s) to perform |
Providers
Chef::Provider::Snoopy
The main provider for the parent snoopy
resource.
Chef::Provider::SnoopyApp
Provider to handle installation and removal of the Snoopy packages.
Chef::Provider::SnoopyConfig
The child provider for managing Snoopy's configuration.
Chef::Provider::SnoopyService
Provider to manage enabling and disabling Snoopy logging.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Add tests for the new feature; ensure they pass (
rake
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
License & Authors
- Author: Jonathan Hartman jonathan.hartman@socrata.com
Copyright 2015 Socrata, Inc.
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.
Snoopy Cookbook CHANGELOG
v1.0.1 (2015-10-22)
- Default config attribute to an empty hash instead of nil so overrides can be done without worrying about nil reference errors
- Clear up a Chef nil warning by not passing on a source attribute from the default recipe unless it's non-nil
v1.0.0 (2015-10-22)
- Switch from the year-old base Ubuntu package to a custom-built version
- Add ability to manage the config file that newer versions support
- Fully refactor the resources and providers in preparation for future additional platform support
v0.1.0 (2015-09-30)
- Initial release; Ubuntu only
v0.0.1 (2015-09-28)
- Development started
Foodcritic Metric
1.0.1 passed this metric
1.0.1 passed this metric