Skip to content

Instantly share code, notes, and snippets.

@warmuuh
Created April 26, 2012 11:48
Show Gist options
  • Save warmuuh/2499070 to your computer and use it in GitHub Desktop.
Save warmuuh/2499070 to your computer and use it in GitHub Desktop.
virgo installation
#
# Cookbook Name:: tailor
# Recipe:: default
#
# Copyright 2011, YOUR_COMPANY_NAME
#
# All rights reserved - Do Not Redistribute
#
# This recipe installes Virgo on the node
# TODO: and starts it later on
#download and install virgo
tailor_downloadZipped "Virgo" do
url node["virgo"]["url"]
path node["virgo"]["unzipPath"]
end
#copy configs to virgo path
remote_directory "#{node["virgo"]["path"]}" do
source "virgo"
files_backup false
files_mode "0755"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment