Giter VIP home page Giter VIP logo

chef-local-users's Introduction

Users recipe

Manage local users via databags

See Also

ssh::private_keys recipe to deliver private keys securely.

Databag format

The databag 'users' should contain entries like this:

joe.json

{
  "id": "joe",
  "username": "joe",
  "uid": 1234,
  "groups": ["admin", "group1", "group2"],
  "shell": "\/bin\/bash",
  "comment": "Joey Fatone",
  "ssh_keys": "ssh-dss ....\nssh-dss ....\n",
  "nologin" : true
}

Note that JSON requires that newlines in strings be escaped as '\n' - so if you have newlines in the ssh_keys field, you must escape them.

The username attribute is optional, and defaults to the value of the 'id' value. It is there to bypass restrictions on the contents of the id attribute (you cannot have an id with a dot, for example; so to create user joe.smith, you would use id joe_smith and username joe.smith).

Set the "remove" attribute in the databag to delete the user.

Set the nologin flag to set the account to be NL under omnios (see man passwd).

Attributes

In your nodes and roles, add entries like this:

:users => { 
  :enabled => true, # True by default, set to false to disable cookbook
  :groups => [ 'admin', 'webdev' ] 
}

This will cause a databag search for all users of the admin and webdev groups, and make sure they are added.

Weak Templating of Authorized Keys

This recipe will create the home directories, and also create the SSH authorized key file, if it does not already exist. Once it exists (by chef or other forces), it will not be changed.

chef-local-users's People

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.