Skip to content

Instantly share code, notes, and snippets.

View mavimo's full-sized avatar
⌨️
coding

Marco Vito Moscaritolo mavimo

⌨️
coding
View GitHub Profile
@berngp
berngp / Vagrant.rb
Created March 16, 2012 23:57
Vagrant, Chef-Solo and Data_Bags
#!/usr/bin/env ruby
Vagrant::Config.run do |config|
# Web App Servers
config.vm.define :app do |app_config|
app_config.vm.box = "centos-6"
app_config.vm.network :hostonly, "33.33.33.30"
app_config.vm.share_folder("tomcat-gz-path", "/tmp/archive/tomcat", "../../archives/tomcat")