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

ssh_user_keys (1) Versions 0.1.0

Installs ssh keys for users

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

ssh_user_keys Chef Cookbook

This cookbook will install ssh keys and certificates to users directory ~/.ssh
Very useful for constant or automated git work load.

Requirements

Works and tested:
* Ubuntu 12.04
* Ubuntu 14.04
* Ubuntu 15.04
* CentOS 6.4
* CentOS 6.5
* CentOS 7

Attributes

ssh_user_keys::default

  • default['ssh_user_keys']['user'] = 'root' "Can be replaced with desired username"
  • default['ssh_user_keys']['user_home_dir'] = '/root' "Can be replaced with desired user path"

Usage

ssh_user_keys::default

Place ssh key in templates > default, modify default.rb recipe to specify key names. Than specify user and user home directory in default attributes or a role file.
e.g. role file:

name 'app_server'
description 'Default application server role'
default_attributes(
:ssh_user_keys => {
      :user => 'user_name_here',
      :user_home_dir => '/home/user_home_dir_here',
    }
)
env_run_lists(
"_default" => [
  "recipe[ssh_user_keys]",
],
)

Or just include ssh_user_keys in your node's run_list:

{
  "name":"my_node",
  "run_list": [
    "recipe[ssh_user_keys]"
  ]
}

Template ssh_config.erb will do ssh-add of a key.

License and Authors

Authors: Boris Karaoglanov boris@opsmag.com

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

ssh_user_keys CHANGELOG

This file is used to list changes made in each version of the ssh_user_keys cookbook.

0.1.0

  • [bkaraoglanov] - Initial release of ssh_user_keys

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: ssh_user_keys/metadata.rb:1
FC065: Ensure source_url is set in metadata: ssh_user_keys/metadata.rb:1
FC066: Ensure chef_version is set in metadata: ssh_user_keys/metadata.rb:1
FC067: Ensure at least one platform supported in metadata: ssh_user_keys/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