Skip to content

Instantly share code, notes, and snippets.

@priteau
Created June 21, 2012 09:09
Show Gist options
  • Save priteau/2964754 to your computer and use it in GitHub Desktop.
Save priteau/2964754 to your computer and use it in GitHub Desktop.
A Vagrantfile for Nimbus Infrastructure development
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.provision :shell, :inline => "apt-get -y update"
config.vm.provision :shell, :inline => "apt-get -y install ack-grep ant build-essential default-jdk git junit4 python-dev python-pexpect sqlite3 vim"
config.vm.provision :shell, :inline => "su -l vagrant -c 'git clone git://github.com/nimbusproject/nimbus.git'"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment