mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-10 00:07:00 +02:00
15 lines
319 B
Ruby
15 lines
319 B
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "wheezy64"
|
|
|
|
config.vm.provision "shell" do |s|
|
|
s.path = "bootstrap.sh"
|
|
s.privileged = false
|
|
end
|
|
end
|