Skip to content

Instantly share code, notes, and snippets.

@mrchrisadams
Created January 26, 2010 10:28
Show Gist options
  • Save mrchrisadams/286728 to your computer and use it in GitHub Desktop.
Save mrchrisadams/286728 to your computer and use it in GitHub Desktop.
include_recipe "apache"
include_recipe "apache2::mod_proxy"
include_recipe "apache2::mod_proxy_http"
include_recipe "java"
remote_file "jira" do
path "/tmp/jira.tar.gz"
source "http://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-2.1.7-standalone.tar.gz"
end
bash "untar-jira" do
code "(cd /tmp; tar zxvf /tmp/jira.tar.gz)"
end
bash "install-jira" do
code "mv /tmp/atlassian-jira-2.1.7-standalone /srv/jira"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment