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

identities (7) Versions 0.1.11

Installs/Configures identities

Policyfile
Berkshelf
Knife
cookbook 'identities', '= 0.1.11', :supermarket
cookbook 'identities', '= 0.1.11'
knife supermarket install identities
knife supermarket download identities
README
Dependencies
Quality -%

Description

Cookbook that creates LWRPs to manage users/groups. Inspired by the Opscode 'users' cookbook. But more complete.

Warning

Apprently, some people are confused by the fact that the repository is named chef-identities and that you should rename the cookbook
to identities.

It's kind of a defacto standard on Github for people to name their cookbooks chef-foo.

In any case, now you know : )

Requirements

In order for this cookbook to work properly, you need to install the ruby-shadow gem.

Users data bag example

{
  "home_dir": "/root",
  "shell": "/bin/bash",
  "uid": 0,
  "groups": [
    "root"
  ],
  "comment": "The all mighty root",
  "id": "root"
}

If keys are missing, it's not a problem. The provider will just use the user resource's defaults.

Users vault data bag example

==============================

    {
      "authorized_keys": [
        "some SSH key"
      ],
      "password": "some password hash"
    }

NOTE: Passwords and SSH keys need to be stored in an encrypted data bag.

User management example

identities_user 'root' do
  data_bag 'foo'
  encrypted_databag true
  secret_file '/etc/chef/example'
end

In the above example, the values will be taken from the 'foo' data bag instead of the 'users' default.

Actions:

  • :manage => create/manage user
  • :remove => delete user (leaves home directory)
  • :lock => lock user
  • :unlock => unlock user
  • :cleanup => remove home directory

Group management

identities_group 'root' do
  data_bag 'foo'
  members [ 'foo', 'bar' ]
  gid 0
end

In the above example, the members of the group are specified. But the group provider will also search the specified data bag for the 'groups' key to append those members as well.

Actions:

  • :manage => create/manage
  • :remove => delete group

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found