From d79611c168334aeb3a290ff60381d1c0a58c411e Mon Sep 17 00:00:00 2001 From: angristan Date: Mon, 25 Feb 2019 22:55:57 +0100 Subject: [PATCH] Add Vagrantfile for easier testing --- .gitignore | 2 ++ Vagrantfile | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .gitignore create mode 100644 Vagrantfile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73ab2cf --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vagrant/ +*.log diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..2464b10 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,30 @@ +# Run the script in headless mode for each of the supported OS. + +machines = [ + { hostname: 'openvpn-debian-9', box: 'debian/stretch64' }, + { hostname: 'openvpn-debian-8', box: 'debian/jessie64' }, + { hostname: 'openvpn-ubuntu-1604', box: 'ubuntu/bionic64' }, + { hostname: 'openvpn-ubuntu-1804', box: 'ubuntu/xenial64' }, + { hostname: 'openvpn-centos-7', box: 'centos/7' }, + { hostname: 'openvpn-fedora-29', box: 'fedora/29-cloud-base' }, + { hostname: 'openvpn-fedora-28', box: 'fedora/28-cloud-base' }, + { hostname: 'openvpn-archlinux', box: 'archlinux/archlinux' } +] + +Vagrant.configure('2') do |config| + machines.each do |machine| + config.vm.provider 'virtualbox' do |v| + v.memory = 1024 + v.cpus = 2 + end + config.vm.define machine[:hostname] do |machineconfig| + machineconfig.vm.hostname = machine[:hostname] + machineconfig.vm.box = machine[:box] + + machineconfig.vm.provision 'shell', inline: <<-SHELL + AUTO_INSTALL=y /vagrant/openvpn-install.sh + ps aux | grep openvpn | grep -v grep > /dev/null 2>&1 && echo "Success: OpenVPN is running" && exit 0 || echo "Failure: OpenVPN is not running" && exit 1 + SHELL + end + end +end