Skip to content

Instantly share code, notes, and snippets.

@smford22
Created December 3, 2014 22:03
Show Gist options
  • Save smford22/05af823dbbad94e736f9 to your computer and use it in GitHub Desktop.
Save smford22/05af823dbbad94e736f9 to your computer and use it in GitHub Desktop.
#
# Cookbook Name:: users
# Recipe:: default
#
# Copyright (C) 2014 YOUR_NAME
#
# All rights reserved - Do Not Redistribute
#
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