1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-05 15:57:23 +01:00

add preliminary build tools for a Mail-in-a-Box PPA

Starting with my dnswl.org modifications to postgrey.
This commit is contained in:
Joshua Tauberer
2015-05-18 21:54:12 -04:00
parent 4f98d470a0
commit 0a71dca825
3 changed files with 79 additions and 0 deletions

11
ppa/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu14.04"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provision :shell, :inline => <<-SH
sudo apt-get update
SH
end