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

envdir (1) Versions 0.1.0

An LWRP and recipes for managing envdir directories and files

Policyfile
Berkshelf
Knife
cookbook 'envdir', '~> 0.1.0', :supermarket
cookbook 'envdir', '~> 0.1.0'
knife supermarket install envdir
knife supermarket download envdir
README
Dependencies
Quality 17%

envdir cookbook

The envdir cookbook is a LWRP for creating, deleting, and maintaining
directories to be used with daemontools envdir
command. The cookbook will attempt to install the daemontools package, create
your envdir directory, and add and delete files, based on a hash you define,
from the directory as needed.

Requirements

The daemontools system package.

Usage

You can use the LWRP directly, or you can use the create and delete recipes.
When using the built in recipes, you'll need to set attributes for
node[:envdir][:directory] and node[:envdir][:environment].

create recipe

run_list("recipe[envdir::create]")
default_attributes(
  :envdir => {
    :directory => "/etc/rails_app.d/env",
    :environment => {
      :HOME => "/home/appuser"
      :PATH => "/home/appuser/.rbenv/shims:/home/appuser/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
    }
  }
)

LWRP

envdir "/etc/rails_app.d/env" do
  environment(
    :HOME => "/home/appuser"
    :PATH => "/home/appuser/.rbenv/shims:/home/appuser/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  )
end

Attributes

  • directory The directory where you'll store your environment configuration
  • environment A hash of key value pairs, defining environment variables and their values
  • daemontools_package The name of the daemontools system package (default: daemontools)
  • directory_mode The mode of directory created (default: 0555)
  • file_mode The mode of files created (default: 0444)
  • group The group owner of the directory and files created (default: root)
  • user The owner of the directory and files created (default: root)

Recipes

create

As long as you create default values for the envidr directory and environment,
you can include this where ever you like.

delete

Ensure that you define node[:envidr][:directory] and you can include this.

Author

Author:: Philip Champon (philip@adaptly.com)

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Collaborator Number Metric
            

0.1.0 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

0.1.0 failed this metric

FC064: Ensure issues_url is set in metadata: envdir/metadata.rb:1
FC065: Ensure source_url is set in metadata: envdir/metadata.rb:1
FC066: Ensure chef_version is set in metadata: envdir/metadata.rb:1
FC067: Ensure at least one platform supported in metadata: envdir/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

0.1.0 passed this metric

Testing File Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

0.1.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number