forked from sous-chefs/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
19 lines (15 loc) · 687 Bytes
/
metadata.rb
File metadata and controls
19 lines (15 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name 'users'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache 2.0'
description 'Creates users from a databag search'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '3.0.0'
recipe 'users::default', 'Empty recipe for including LWRPs'
recipe 'users::sysadmins', 'Create and manage sysadmin group'
%w( ubuntu debian redhat centos fedora freebsd mac_os_x scientific oracle amazon zlinux ).each do |os|
supports os
end
source_url 'https://github.com/chef-cookbooks/users'
issues_url 'https://github.com/chef-cookbooks/users/issues'
chef_version '>= 12.1'