forked from sometimesfood/chef-admin-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
50 lines (43 loc) · 1.83 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
maintainer "Sebastian Boehm"
maintainer_email "[email protected]"
license "MIT"
description "Install essential admin tools"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
#version "0.1"
depends "apt-repo"
recipe "admin-essentials", "Install essential admin tools"
recipe "admin-essentials::ack", "Install ack"
recipe "admin-essentials::admin-preferences", "Set some preferences for root"
recipe "admin-essentials::emacs", "Install emacs"
recipe "admin-essentials::etckeeper", "Set up etckeeper"
recipe "admin-essentials::git", "Set up git"
recipe "admin-essentials::grml-zsh", "Set up grml console config"
recipe "admin-essentials::molly-guard", "Set up molly-guard"
grouping "admin-essentials",
:display_name => "admin-essentials",
:description => "admin-essentials attribute settings",
:type => "hash"
attribute "admin-essentials/packages",
:display_name => "admin-essentials packages",
:description => "admin packages to install",
:type => "array",
:calculated => true,
:required => "optional"
attribute "admin-essentials/admin-users",
:display_name => "admin-essentials admin users",
:description => "users to set admin preferences for (apart from root)",
:type => "array",
:required => "optional"
attribute "admin-essentials/admin-groups",
:display_name => "admin-essentials admin groups",
:description => "groups to set admin preferences for (apart from root)",
:type => "array",
:required => "optional"
attribute "admin-essentials/admin-groups",
:display_name => "admin-essentials editor",
:description => "$EDITOR to set for admins",
:type => "string",
:calculated => true,
:required => "optional"
supports "debian", ">= 6.0.0"
supports "ubuntu", ">= 10.04"