]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/metadata.rb
Take OTRS passwords from a data bag
[chef.git] / cookbooks / otrs / metadata.rb
1 maintainer        "OpenStreetMap Administrators"
2 maintainer_email  "admins@openstreetmap.org"
3 license           "Apache 2.0"
4 description       "Installs and configures OTRS"
5 long_description  IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
6 version           "1.0.0"
7 depends           "apache"
8 depends           "postgresql"
9
10 attribute "otrs",
11   :display_name => "OTRS",
12   :description => "Hash of OTRS attributes",
13   :type => "hash"
14
15 attribute "otrs/version",
16   :display_name => "OTRS Version",
17   :description => "Version of OTRS to use",
18   :default => "3.1.5"
19
20 attribute "otrs/user",
21   :display_name => "User",
22   :description => "Iser to run OTRS as",
23   :default => "otrs"
24
25 attribute "otrs/group",
26   :display_name => "Group",
27   :description => "Group to run OTRS as",
28   :default => nil
29
30 attribute "otrs/database_cluster",
31   :display_name => "Database Cluster",
32   :description => "Database cluster to run OTRS against",
33   :default => "8.4/main"
34
35 attribute "otrs/database_name",
36   :display_name => "Database Name",
37   :description => "Database to run OTRS against",
38   :default => "otrs"
39
40 attribute "otrs/database_user",
41   :display_name => "Database User",
42   :description => "User for OTRS to connect to the database as",
43   :default => "otrs"
44
45 attribute "otrs/database_password",
46   :display_name => "Database Password",
47   :description => "Password for OTRS to authenticate to the database with",
48   :default => ""
49
50 attribute "otrs/site",
51   :display_name => "Site",
52   :description => "Name of OTRS site",
53   :default => nil