Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #59 from bflad/metadata_dependencies
Browse files Browse the repository at this point in the history
Split metadata supports/depends, lock mysql ~> 5.0, fixes #55
  • Loading branch information
bflad committed Jan 24, 2015
2 parents 91ba364 + 366fb90 commit 2064490
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,19 @@
recipe 'stash::service_init', 'Installs/configures Stash init service'
recipe 'stash::tomcat_configuration', "Configures Stash's built-in Tomcat"

%w(amazon centos redhat scientific ubuntu).each do |os|
supports os
end
supports 'amazon'
supports 'centos'
supports 'redhat'
supports 'scientific'
supports 'ubuntu'

%w(apache2 ark cron database git java mysql mysql_connector perl postgresql).each do |cb|
depends cb
end
depends 'apache2'
depends 'ark'
depends 'cron'
depends 'database'
depends 'git'
depends 'java'
depends 'mysql', '~> 5.0'
depends 'mysql_connector'
depends 'perl'
depends 'postgresql'

0 comments on commit 2064490

Please sign in to comment.