]> git.openstreetmap.org Git - chef.git/blob - cookbooks/osqa/metadata.rb
da3014e8cbfffe17db7b54f985c9311a80754353
[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
10 attribute "osqa",
11   :display_name => "OSQA",
12   :description => "Hash of OSQA attributes",
13   :type => "hash"
14
15 attribute "osqa/revision",
16   :display_name => "OSQA Revision",
17   :description => "Default revision of OSQA to use",
18   :default => "703"
19
20 attribute "osqa/user",
21   :display_name => "User",
22   :description => "Default user to run OSQA as",
23   :default => "osqa"
24
25 attribute "osqa/group",
26   :display_name => "Group",
27   :description => "Default group to run OSQA ad",
28   :default => nil
29
30 attribute "osqa/database_name",
31   :display_name => "Database Name",
32   :description => "Default database to run OSQA against",
33   :default => "osqa"
34
35 attribute "osqa/database_user",
36   :display_name => "Database User",
37   :description => "Default user for OSQA to connect to the database as",
38   :default => "osqa"
39
40 attribute "osqa/database_password",
41   :display_name => "Database Password",
42   :description => "Default password for OSQA to authenticate to the database with",
43   :default => ""
44
45 attribute "osqa/sites",
46   :display_name => "Sites",
47   :description => "Array of OSQA sites to setup",
48   :default => []