Project

poise-file

0.01
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A Chef cookbook for advanced file managent.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

< 14, >= 12.1
~> 1.0
~> 2.0
 Project Readme

Poise-File Cookbook

Build Status Gem Version Cookbook Version Coverage Gemnasium License

A Chef cookbook for advanced file management.

Quick Start

To write out a JSON file from node attributes:

poise_file '/etc/myapp.json' do
  content node['myapp']
end

To update a file in place:

poise_file '/etc/hosts' do
  content 'otherhostname'
  pattern 'myhostname'
  pattern_location :replace
end

Resources

poise_file

The poise_file resource extends the core file resource to support formats and patterns.

Formats

If the file path ends with .json or .yaml/.yml and the content property is a Hash or Array object, it will be automatically converted. You can also explicitly set the format property to :json or :yaml to force formatting.

Patterns

Using replacement patterns allows editing files in-place in a structured manner. This is similar to the FileEdit API or line cookbook/resource. The pattern property takes a RegExp object or string pattern to match against. The value of pattern_location controls how the content gets used relative to the pattern.

  • :replacecontent replaces the matching section. If the pattern does not match, the content is not changed.
  • :replace_or_addcontent replaces the matching section. If the pattern does not match, the content is appended to the end of the file.
  • :beforecontent is inserted immediately before the matching section. If the pattern does not match, the content is not changed.
  • :aftercontent is inserted immediately after the matching section. If the pattern does not match, the content is not changed.

You can also pass a Proc to perform arbitrary manipulations:

poise_file '/etc/myapp.conf' do
  pattern proc {|existing_content| existing_content.tr('a-z', 'n-za-m') }
end

If you have an in-place editing scenario not handled by these operations, please let me know by filing an issue.

Actions

All actions are the same as the core file resource.

Properties

  • format – File serialization format. One of :text, :json, or :yaml. (default: auto-detect)
  • pattern – Regular expression pattern or object to search for.
  • pattern_location – Mode to use for the pattern replacement. One of :replace, :replace_or_add, :before, :after. (default: :replace_or_add)

All other properties as the same as the core file resource.

Sponsors

Development sponsored by SAP.

The Poise test server infrastructure is sponsored by Rackspace.

License

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