mailq-inspector/Vagrantfile

14 lines
284 B
Plaintext
Raw Normal View History

2019-01-26 11:10:20 +01:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "debian/stretch64"
config.vm.synced_folder "./", "/vagrant", type: "rsync"
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y postfix
SHELL
end