-
Notifications
You must be signed in to change notification settings - Fork 34
/
metadata.rb
30 lines (27 loc) · 1.16 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
name 'chef_jira'
maintainer 'KLM Royal Dutch Airlines'
maintainer_email 'martijn.vanderkleijn@klm.com'
license 'Apache 2.0'
description 'Installs/Configures Atlassian JIRA.'
version '2.1.0'
recipe 'chef_jira', 'Installs/configures Atlassian JIRA'
recipe 'chef_jira::apache2', 'Installs/configures Apache 2 as proxy (ports 80/443)'
recipe 'chef_jira::build_war', 'Builds JIRA WAR'
recipe 'chef_jira::container_server_configuration', 'Configures container server for JIRA deployment'
recipe 'chef_jira::container_server_jars', 'Deploys database/JIRA jars to container server'
recipe 'chef_jira::database', 'Installs/configures MySQL/Postgres server, database, and user for JIRA'
recipe 'chef_jira::installer', 'Installs/configures JIRA via installer'
recipe 'chef_jira::standalone', 'Installs/configures JIRA via standalone archive'
recipe 'chef_jira::sysv', 'Installs/configures JIRA SysV init service'
recipe 'chef_jira::war', 'Installs JIRA WAR'
depends 'apache2'
depends 'ark'
depends 'database'
depends 'java'
depends 'mysql'
depends 'mysql_connector'
depends 'postgresql'
suggests 'tomcat'
supports 'centos', '>= 6.0'
supports 'redhat', '>= 6.0'
supports 'ubuntu', '>= 12.04'