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

fetch (7) Versions 1.6.0

Installs/Configures fetch

Policyfile
Berkshelf
Knife
cookbook 'fetch', '= 1.6.0', :supermarket
cookbook 'fetch', '= 1.6.0'
knife supermarket install fetch
knife supermarket download fetch
README
Dependencies
Changelog
Quality 100%

Fetch

This cookbook was written primarily to automate several steps I often have to do in recipes:

  • Fetch some archive
  • Extract it somewhere
  • Symlink it elsewhere

All these steps are wrapped in a neat LWRP.

Supports

Possible archive_type:
- gzip (tar.gz)
- war
- zip

It's also possible to fetch only a file without extracting it or symlinking it.

Usage

fetch_www 'smokeping-2.6.9.tar.gz' do
  base_url 'http://oss.oetiker.ch/smokeping/pub'
  extract_to '/usr/share'
  symlink_to '/usr/share/smokeping'
end
fetch_www 'nexus-2.8.0.war' do
  base_url 'http://www.sonatype.org/downloads/'
  archive_type 'war'
  extract_to '/tmp/nexus'
  symlink_to '/tmp/nexus-test'
end
fetch_www 'ssoAdminTools_10.0.0.zip' do
  base_url 'http://download.forgerock.org/downloads/openam/openam10/10.0.0/'
  archive_type 'zip'
  extract_to '/tmp/ssoadmin'
  symlink_to '/tmp/ssoadmin-test'
end

LWRP options

  • base_url: where to get the archive file
  • archive_type: gzip or war
  • download_to: By default, to Chef's temp download directory. Can be changed to wherever.
  • extract: defaults to true
  • extract_to: where to unpack the archive
  • symlink: defaults to true
  • symlink_to: where to symlink it

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (like add_component_x)
  3. Write you change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request using Github

License and Authors

Authors: Jean-Francois Theroux me@failshell.io

License: Apache version 2

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

CHANGELOG for fetch

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

0.1.0:

  • Initial release of fetch

Check the Markdown Syntax Guide for help with Markdown.

The Github Flavored Markdown page describes the differences between markdown on github and standard markdown.

Foodcritic Metric
            

1.6.0 passed this metric