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

bashd (4) Versions 0.3.0

LWRP for bash.d scriptlets

Policyfile
Berkshelf
Knife
cookbook 'bashd', '~> 0.3.0', :supermarket
cookbook 'bashd', '~> 0.3.0'
knife supermarket install bashd
knife supermarket download bashd
README
Dependencies
Changelog
Quality 17%

bashd

  • This cookbook provide LWRPs for managing .bash.d snippets for some user.
  • Those snthat will be executed on user login, and very useful for setupping user's environment variables, bash prompt and so on stuff.
  • Also it allows you to well structure these scripts.

Features

  • resource for create .bash.d folder for bash snippets and include all .sh files from the folder with include command in .bashrc file. It adds that include command to the .bashrc file.
  • resource for create and delete those bash snippets from templates.

Requirements

Platform

  • Tested on Debian 7

<a name="attributes">

Attributes

bashd resource

<table>
<tr>
<th>Attribute</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><tt>user</tt></td>
<td>String</td>
<td>User who will get .bash.d snippets. Name attribute.</td>
<td><tt>root</tt></td>
</tr>
</table>

bashd_entry resource

<table>
<tr>
<th>Attribute</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
<tr>
<td><tt>snippet</tt></td>
<td>String</td>
<td>Snippet name, and at the same time .sh.erb template name (if template source isn't specified). Name attribute</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>user</tt></td>
<td>String</td>
<td>User who will get .bash.d snippets</td>
<td><tt>root</tt></td>
</tr>
<tr>
<td><tt>cookbook</tt></td>
<td>String</td>
<td>Cookbook that contain snippet's erb template</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>source</tt></td>
<td>String</td>
<td>snippet's erb template name</td>
<td><tt>nil</tt></td>
</tr>
<tr>
<td><tt>variables</tt></td>
<td>Hash</td>
<td>Hash with variables that should be passed to snippets template</td>
<td><tt>{}</tt></td>
</tr>
<tr>
<td><tt>content</tt></td>
<td>String</td>
<td>Alternate method to specify snippet content. Just add it to this attribute. template/source/variables attribute will be ignored if this attribute is not nil</td>
<td><tt>nil</tt></td>
</tr>
</table>

Usage

Add bashd cookbook to your metadata.rb dependency, like:

depends 'bashd', '~> 0.2.0'

Install bashd

Add to recipe:

bashd 'username'

This will:

  • create username_home_dir_from_passwd_file/.bash.d folder
  • The folder will have username as owner, and username's primary group as a group.
  • Add directive to .bash.rc file to include any .sh file from ~/.bash.d folder

When no user specified, username will be root (by default).

Create snippet

With template

To create new snippet with template:

  • create erb template for snippet
  • if it has snippet_name.sh.erb (snippet_name same as snippet attribute) name it will be used automagically
  • if it has anyothername.erb name it need to be specified in template attribute

Add to your recipe:

bashd_entry 'snippet_name' do
  user 'username'
  action :create
end
  • This will create ~/.bash.d/snippet_name.sh snippet in ~/.bash.d dir, from snippet_name.sh.erb template.
  • The snippet will have username as owner, and username's primary group as a group.
With a content attribute

To create new snippet with a content attribute:

  • if you use content attribute it will override any template/source/variables attributes.
  • By default content attribute is nil
bashd_entry 'snippet_name' do
  user 'username'
  content 'export FOO=bar'
  action :create
end
  • This will create ~/.bash.d/snippet_name.sh snippet in ~/.bash.d dir, from content attribute.
  • The snippet will have username as owner, and username's primary group as a group.

Delete snippet

Add to your recipe:

bashd_entry 'snippet_name' do
  user 'username'
  action :remove
end

This will remove ~/.bash.d/snippet_name.sh snippet for user username.

Tests

Integration tests can be runned via Test Kitchen.

The default .kitchen.yml assumes that you are testing using the vagrant driver, but if you have AWS or DigitalOcean account, you can change the driver and run the tests on remote hosts. To run the tests, exec:

bundle install
bundle exec kitchen verify

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write you change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Commit your changes (git commit -am 'Added some feature')
  7. Push to the branch (git push origin my-new-feature)
  8. Create new Pull Request

License and Authors

Author:: Kostiantyn Lysenko (gshaud@gmail.com)

Copyright 2015, Kostiantyn Lysenko

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.

CHANGELOG for bashd

This file is used to list changes made in each version of bashd.

0.3.0

  • Add: content attribute to define .bash.d snippets inside bashd_entry resource.
  • Tidy: README file for better readability.

0.2.0:

  • Add: reads the actual group id from /etc/passwd rather than relying on the user and group name being equal
  • Modify: update documentation

0.1.0:

  • Add: README file
  • Modify: make snippet name - name attribute and user name - usual attribute
  • Modify: change attribute name that specify template name from: template to: source

0.0.1:

  • Initial release of bashd

Check the Markdown Syntax Guide for help with Markdown.

The Github Flavored Markdown page describes the differences between markdown on github and standard markdown.

Collaborator Number Metric
            

0.3.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.3.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.3.0 failed this metric

FC064: Ensure issues_url is set in metadata: bashd/metadata.rb:1
FC065: Ensure source_url is set in metadata: bashd/metadata.rb:1
FC066: Ensure chef_version is set in metadata: bashd/metadata.rb:1
FC069: Ensure standardized license defined in metadata: bashd/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

0.3.0 passed this metric

Testing File Metric
            

0.3.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.3.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