Skip to content

Latest commit

 

History

History
129 lines (99 loc) · 3.31 KB

rfc027-file-content-verification.md

File metadata and controls

129 lines (99 loc) · 3.31 KB
RFC Author Status Type Chef-Version
27
Steven Danna <[email protected]>
Accepted
Standards Track
12

File Content Verification

File-based resources should be able to verify a file's content via user-supplied instructions before deploying the new content.

Specification

The verify attribute of the file, template, cookbook_file, and remote_file resources will take a user-provided block or string. At converge time, a block will be passed the path to a temporary file holding the proposed content for the file. If the block returns true the provider will continue to update the file on disk as appropriate. If the block returns false, the provider will raise an error.

If a string argument to verify is passed, it will then be executed as a system command. If the command's return code indicates success (0 on unix-like system) the provider will continue to update the file on disk as appropriate. If the command's return code indicates failure, the provider will raise an error.

The path to the temporary file with the proposed content will be available by using Ruby's sprinf formatting:

"%{path}"

other variables may be made available to commands in the future.

If no verification block or string is supplied by the user, the provider assumes the content is valid.

Multiple verify blocks may be provided by the user. All given verify block must pass before the content is deployed.

As an example:

# This should succeed
template "/tmp/foo" do
  verify do |path|
    true
  end
end

# This should succeed on most systems
template "/tmp/wombat" do
  verify "/usr/bin/true"
end

# This should raise an error
template "/tmp/bar" do
  verify do |path|
    false
  end
end

# This should raise an error on most systems
template "/tmp/turtle" do
  verify "/usr/bin/false"
end

# This should pass
template "/tmp/baz" do
  verify { true }
  verify { 1 == 1 }
end

# This should raise an error
template "/tmp/bat" do
   verify { true }
   verify { 1 == 0 }
end

Users could use this feature to shell out to tools which check the configuration:

template "/etc/nginx.conf" do
  verify "nginx -t -c %{path}"
end

Chef may ship built-in verifiers for common checks such as content-type verification. Built-in verifiers can be used by passing well-known symbols to the verify attribute:

template "/etc/config.json" do
  verify :json
end

Motivation

Typos and bugs in a template can lead Chef to render invalid configuration files on a node. In some cases, this will cause the related service to fail a notified restart, bringing down the user's application. One hopes to catch such errors in testing, but that is not always possible.

Many applications provide a means to verify a configuration file, but it is currently difficult to use these tools to verify a template without an elaborate series of resources chained together with notifications.

Related BUGS

https://tickets.opscode.com/browse/CHEF-4416 https://tickets.opscode.com/browse/CHEF-3634

Compatibility

This feature is backwards compatible with existing recipes.

Copyright

This work is in the public domain. In jurisdictions that do not allow for this, this work is available under CC0. To the extent possible under law, the person who associated CC0 with this work has waived all copyright and related or neighboring rights to this work.