-
Notifications
You must be signed in to change notification settings - Fork 2
/
metadata.rb
22 lines (20 loc) · 965 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
name 'crowd'
maintainer 'Sergio Leone'
maintainer_email 'sergio.leone@qvc.com'
license 'Apache 2.0'
description 'Installs/Configures Atlassian Crowd'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.2.1'
recipe 'crowd', 'Installs/Configures Atlassian Crowd'
recipe 'crowd::apache2', 'Installs/Configures Apache 2 proxy for Crowd'
recipe 'crowd::configuration', "Configures Crowd's settings"
recipe 'crowd::database', 'Installs/configures MySQL/Postgres server, database, and user for Crowd'
recipe 'crowd::linux_standalone', 'Installs/configures Crowd via Linux standalone archive'
recipe 'crowd::service_init', 'Installs/configures Crowd init service'
recipe 'crowd::tomcat_configuration', "Configures Crowd's built-in Tomcat"
%w(amazon centos redhat scientific ubuntu).each do |os|
supports os
end
%w(apache2 ark database java mysql percona postgresql).each do |cb|
depends cb
end