cookbook 'platform_packages', '= 0.4.0'
platform_packages (2) Versions 0.4.0 Follow2
Installs individual packages via attribute or data bag metadata.
cookbook 'platform_packages', '= 0.4.0', :supermarket
knife supermarket install platform_packages
knife supermarket download platform_packages
Description
Installs individual packages via attribute or data bag metadata. If your needs
are complex or there is additonal config, then that should be in a
standalone recipe/cookbook.
The motivating use case is putting packages like tree on systems without
cranking out a cookbook for it. Mac OS X users can also use this cookbook with
the homebrew cookbook to install packages.
Requirements
Chef
Tested on 0.10.2 but newer and older version should work just fine. File an
issue if this isn't the case.
Platform
The following platforms have been tested with this cookbook, meaning that the
recipes run on these platforms without error:
- ubuntu
- debian
- mac_os_x
- suse
- arch
Cookbooks
There are *no external cookbook dependencies.
Usage
Simply include recipe[platform_packages]
in your run_list and populate the
node['platform_packages']['pkgs']
attribute list.
To use recipe[platform_packages::data_bag]
, include it in your run_list and
have a data bag called pkgs
with an item name corresponding to your
platform like the following:
{
"id" : "ubuntu",
"pkgs" : [
{ "name" : "tree",
"action" : "upgrade"
},
{ "name" : "stow" }
]
}
Alternatively, you can override the data bag and item by setting the
node['platform_packages']['data_bag']
attribute to some like:
node['platform_packages']['data_bag'] = ['apps', "workstation-mac"]
Recipes
default
Processes a list of pkgs (which is emtpy by default) to be installed.
Use this recipe when you have a list of packages in
node['platform_packages']['pkgs']
.
data_bag
Fetches an list of pkgs from a data bag item and appends it to the
node['platform_packages']['pkgs']
attribute for processing. This recipe then
includes the default recipe, so there is no need to explicitly include
recipe[platform_packages]
.
Use this recipe when you want data bag driven data in your workflow.
Attributes
pkgs
An array of package hashes to be installed on the system, all of which need
no configuration. The keys in each hash correspond to the attributes passed to
the package resource. For example:
node['platform_packages']['pkgs'] = [
{ 'name' => 'tree',
'action' => 'upgrade'
},
{ 'name' => 'stow' }
]
The default is an empty Array: []
.
data_bag
The data bag and item containing a list of packages to be installed.. This is
used by the data_bag
recipe. The default is ['pkgs', node['platform']]
.
Resources and Providers
There are none defined.
Development
- Source hosted at GitHub
- Report issues/Questions/Feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested.
Ideally create a topic branch for every seperate change you make.
License and Author
Author:: Fletcher Nichol (fnichol@nichol.ca)
Copyright:: 2011, Fletcher Nichol
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.
Dependent cookbooks
This cookbook has no specified dependencies.
Contingent cookbooks
There are no cookbooks that are contingent upon this one.