Introduce Vagrantfile for a test environment

This commit is contained in:
Jan Philipp Timme 2019-11-23 19:44:07 +01:00
parent 96117a64b3
commit c748253803
1 changed files with 40 additions and 0 deletions

40
Vagrantfile vendored Normal file
View File

@ -0,0 +1,40 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "debian/buster64"
config.vm.synced_folder "./", "/vagrant", type: "rsync"
# Export postfix port 25 (guest) to port 2525 (host)
# This is useful for throwing swaks and other tools against postfix
config.vm.network "forwarded_port", guest: 25, host: 2525
config.vm.provision "shell", inline: <<-SHELL
# Give that vagrant box an apparently good FQDN
echo "local-vagrant.example.com" > /etc/hostname
echo "local-vagrant.example.com" > /etc/mailname
echo "127.0.1.2 local-vagrant.example.com local-vagrant" > /etc/hosts
hostnamectl set-hostname local-vagrant.example.com
# Basic preparations
apt-get update
# Install postfix
DEBIAN_FRONTEND=noninteractive apt-get install -y postfix
# Add milter to configuration
postconf smtpd_milters=inet:127.0.0.1:7777
postconf non_smtpd_milters=inet:127.0.0.1:7777
# Enable and launch postfix
systemctl enable postfix.service
systemctl start postfix.service
# Install swaks
DEBIAN_FRONTEND=noninteractive apt-get install -y swaks
# That's it
echo "That's it. We're set up. Enjoy your test environment."
SHELL
end