Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Simplest possible Vagrantfile
Browse files Browse the repository at this point in the history
Vagrant >= 1.1, VirtualBox, single VM, using upstream Ubuntu 12.04 box, and
referencing our Puppet manifest/module layout. Internal modules take
precedence over vendored.
  • Loading branch information
dcarley committed Jun 11, 2013
1 parent 99c80d6 commit 4c38cbb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
config.vm.box = "precise64"
config.vm.box_url = "http://files.vagrantup.com/precise64.box"

config.vm.provision :puppet do |puppet|
puppet.manifest_file = "site.pp"
puppet.manifests_path = "manifests"
puppet.module_path = [ "modules", "vendor/modules" ]
end
end

0 comments on commit 4c38cbb

Please sign in to comment.