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

poise-archive (9) Versions 1.1.2

A Chef cookbook for unpacking file archives like tar and zip.

Policyfile
Berkshelf
Knife
cookbook 'poise-archive', '= 1.1.2', :supermarket
cookbook 'poise-archive', '= 1.1.2'
knife supermarket install poise-archive
knife supermarket download poise-archive
README
Dependencies
Changelog
Quality 100%

Poise-Archive Cookbook

Build Status
Gem Version
Cookbook Version
Coverage
Gemnasium
License

A Chef cookbook to unpack file archives like TAR and ZIP files.

NOTE: ZIP files are not supported yet, stay tuned.

Quick Start

To download an unpack and archive:

poise_archive 'myapp.tgz' do
  action :nothing
  destination '/opt/myapp'
end

remote_file "#{Chef::Config[:file_cache_path]}/myapp.tgz" do
  source 'https://example.com/myapp.tgz'
  notifies :unpack, 'poise_archive[myapp.tgz]', :immediately
end

Resources

poise_archive

The poise_archive resource unpacks file archives.

poise_archive '/tmp/myapp-1.2.0.tar' do
  destination '/srv/myapp-1.2.0'
end

Actions

  • :unpack – Unpack the archive. (default)

Properties

  • path – Path to the archive. If relative, it is taken as a file inside Chef::Config[:file_cache_path]. (name attribute)
  • destination – Path to unpack the archive to. If not specified, the path of the archive without the file extension is used. (default: auto)
  • group – Group to run the unpack as.
  • keep_existing – Keep existing files in the destination directory when unpacking. (default: false)
  • strip_components – Number of intermediary directories to skip when unpacking. Works like GNU tar's --strip-components. (default: 1)
  • user – User to run the unpack as.

Sponsors

Development sponsored by Bloomberg.

The Poise test server infrastructure is sponsored by Rackspace.

License

Copyright 2016, 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.

BZip2 implementation is based on RBzip2. Copyright Sebastian Staudt, Brian Lopez.
RBzip2 code used under the terms of the new BSD license.

Dependent cookbooks

poise ~> 2.6

Contingent cookbooks

blp-nrpe Applicable Versions
cerner_splunk_ingredient Applicable Versions
cerner_tomcat Applicable Versions
consul Applicable Versions
consul-replicate Applicable Versions
forge_server Applicable Versions
ftb_server Applicable Versions
github_action_runners Applicable Versions
hashicorp-vault Applicable Versions
helm Applicable Versions
java-service Applicable Versions
newrelic-infra Applicable Versions
nomad-agent Applicable Versions
nrpe-ng Applicable Versions
openbazaar Applicable Versions
poise-languages Applicable Versions
radarr Applicable Versions
radiator Applicable Versions
snort Applicable Versions
teleport Applicable Versions

Poise-Archive Changelog

v1.1.2

  • Fix compat with older Ruby that doesn't include Entry#symlink?.

v1.1.1

  • Fix GNU tar longlink extension.

v1.1.0

  • Scrap the original tar implementation in favor of a 100% pure-Ruby solution. This should work on all platforms exactly the same. Hopefully.

v1.0.0

  • Initial release!

Foodcritic Metric
            

1.1.2 passed this metric