-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmetadata.rb
37 lines (29 loc) · 977 Bytes
/
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
name "dsh"
maintainer "Rackspace Us, Inc."
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and Configures dsh"
long_description IO.read(File.join(File.dirname(__FILE__), "README.md"))
version IO.read(File.join(File.dirname(__FILE__), 'VERSION'))
%w{ amazon centos debian fedora oracle redhat scientific ubuntu }.each do |os|
supports os
end
%w{ osops-utils }.each do |dep|
depends dep
end
recipe "dsh::admin",
"Installs and configures dsh admin users"
recipe "dsh::member",
"Installs and configures dsh member users"
attribute "dsh/groups",
:description => "The dsh groups",
:default => "[]"
attribute "dsh/admin_groups",
:description => "The dsh admin groups",
:default => "[]"
attribute "dsh/host_key",
:description => "The dsh host key on member servers",
:default => ""
attribute "dsh/hosts",
:description => "The dsh hosts information",
:default => "[]"