Initial commit.

This commit is contained in:
2013-10-20 14:28:26 +01:00
commit 22d6b0eae1
6 changed files with 44 additions and 0 deletions

8
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,8 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "base"
config.vm.provision "shell", inline: "chmod a+x /vagrant/buildpackage.sh && /vagrant/buildpackage.sh"
end