]> git.openstreetmap.org Git - chef.git/blob - cookbooks/osqa/metadata.rb
Convert all notify/subscribe calls to the new style syntax
[chef.git] / cookbooks / osqa / metadata.rb
1 maintainer        "OpenStreetMap Administrators"
2 maintainer_email  "admins@openstreetmap.org"
3 license           "Apache 2.0"
4 description       "Installs and configures OSQA"
5 long_description  IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
6 version           "1.0.0"
7 depends           "apache"
8 depends           "memcached"
9 depends           "tools"
10
11 attribute "osqa",
12   :display_name => "OSQA",
13   :description => "Hash of OSQA attributes",
14   :type => "hash"
15
16 attribute "osqa/revision",
17   :display_name => "OSQA Revision",
18   :description => "Default revision of OSQA to use",
19   :default => "703"
20
21 attribute "osqa/user",
22   :display_name => "User",
23   :description => "Default user to run OSQA as",
24   :default => "osqa"
25
26 attribute "osqa/group",
27   :display_name => "Group",
28   :description => "Default group to run OSQA ad",
29   :default => nil
30
31 attribute "osqa/database_name",
32   :display_name => "Database Name",
33   :description => "Default database to run OSQA against",
34   :default => "osqa"
35
36 attribute "osqa/database_user",
37   :display_name => "Database User",
38   :description => "Default user for OSQA to connect to the database as",
39   :default => "osqa"
40
41 attribute "osqa/database_password",
42   :display_name => "Database Password",
43   :description => "Default password for OSQA to authenticate to the database with",
44   :default => ""
45
46 attribute "osqa/sites",
47   :display_name => "Sites",
48   :description => "Array of OSQA sites to setup",
49   :default => []