Skip to content

Instantly share code, notes, and snippets.

@smalltown
Created April 23, 2016 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smalltown/1bd4355458a9c798781b41709fc3cd1d to your computer and use it in GitHub Desktop.
Save smalltown/1bd4355458a9c798781b41709fc3cd1d to your computer and use it in GitHub Desktop.
#
# Cookbook Name:: users
# Recipe:: default
#
# Copyright (c) 2016 The Authors, All Rights Reserved.
search("users", "*:*").each do |user_data|
user user_data["id"] do
comment user_data["comment"]
uid user_data["uid"]
gid user_data["gid"]
home user_data["home"]
shell user_data["shell"]
end
end
include_recipe "users::groups"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment