forked from bflad/chef-stash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
36 lines (34 loc) · 1.26 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
31
32
33
34
35
36
# frozen_string_literal: true
name 'stash'
maintainer 'Brian Flad'
maintainer_email '[email protected]'
license 'Apache 2.0'
description 'Installs/Configures Atlassian Stash'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '4.5.1'
recipe 'stash', 'Installs/Configures Atlassian Stash'
recipe 'stash::apache2', 'Installs/Configures Apache 2 proxy for Stash'
recipe 'stash::backup_client', 'Installs/Configures Atlassian Stash Backup Client'
recipe 'stash::backup_client_cron', 'Installs/Configures Atlassian Stash Backup Client cron.d'
recipe 'stash::configuration', "Configures Stash's settings"
recipe 'stash::database', 'Installs/configures MySQL/Postgres server, database, and user for Stash'
recipe 'stash::linux_standalone', 'Installs/configures Stash via Linux standalone archive'
recipe 'stash::service_init', 'Installs/configures Stash init service'
recipe 'stash::tomcat_configuration', "Configures Stash's built-in Tomcat"
supports 'amazon'
supports 'centos'
supports 'redhat'
supports 'scientific'
supports 'ubuntu'
depends 'apache2'
depends 'ark'
depends 'cron'
depends 'database'
depends 'git'
depends 'java'
depends 'mysql', '~> 6.0'
depends 'mysql2_chef_gem'
depends 'mysql_connector'
depends 'perl'
depends 'postgresql'
depends 'yum-epel'