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

concat (7) Versions 0.3.1

Builds files out of smaller concatenated fragments

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

concat-cookbook

concat is a cookbook inspired by the Puppet concat module to allow you to build text files out of smaller orderable fragments. Use cases include building firewall rules, fragmenting monolithic configuration files into smaller chunks, etc.

Supported Platforms

This was tested on Linux and should work as expected there. No idea whether it will work elsewhere.

Requirements

Chef 12.3.0 or higher

Usage

  1. Require the concat cookbook in your own cookbook's metadata.rb.
  2. Use the concat_fragment resource type to build up the fragments for the target file. At present the fragments will only make use of template files, and not cookbook files.
  3. After all fragment resources have been assembled, use a concat resource, ensuring that the path attribute of this resource exactly matches the path you supplied for each fragment.

Example

From the test fixture cookbook, this will create two fragments and meld them into a single concatenated file which will appear at /tmp/test_create1/test:
```text
concat_fragment 'test1.erb' do
target '/tmp/test_create1/test'
end

concat_fragment 'test2.erb' do
target '/tmp/test_create1/test'
variables(
var1: 'hello'
)
end

directory '/tmp/test_create1'

concat '/tmp/test_create1/test'
```

Current features

  • allows creation of file fragments and concatenation into final file
  • deletion of individual fragments and fragment directories
  • fragments from cookbook files as well as templates
  • lots of tests courtesy of Test Kitchen

Upcoming features

  • additional features relentlessly cribbed from the Puppet concat module

Acknowledgments

License and Authors

Copyright 2015, Edmund Rhudy

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.

0.3.0

  • extended concat_fragment to accept templates or cookbook files

0.2.1

  • uses the right combination of provides and resource_name to work on Chef 12.3

0.2.0

  • adds :delete for concat which removes target file and fragment directory
  • adds :delete for concat_fragment: removes fragment from fragment directory
  • fixed updated_by_last_action calls to be accurate
  • list supported platforms in cookbook metadata
  • refactored tests and added additional tests for :delete

0.1.0

Initial release of concat
- :create for concat_fragment
- :create for concat

Foodcritic Metric
            

0.3.1 passed this metric