From 119b11f0227b6565148221bbd0bccb6ef4011a15 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Fri, 4 Oct 2024 17:22:12 -0400 Subject: [PATCH] remove upstream Vagrantfile --- Vagrantfile | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 771f7e27..00000000 --- a/Vagrantfile +++ /dev/null @@ -1,37 +0,0 @@ -# -*- mode: ruby -*- -##### -##### This file is part of Mail-in-a-Box-LDAP which is released under the -##### terms of the GNU Affero General Public License as published by the -##### Free Software Foundation, either version 3 of the License, or (at -##### your option) any later version. See file LICENSE or go to -##### https://github.com/downtownallday/mailinabox-ldap for full license -##### details. -##### - -# vi: set ft=ruby : - -Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/jammy64" - - # Network config: Since it's a mail server, the machine must be connected - # to the public web. However, we currently don't want to expose SSH since - # the machine's box will let anyone log into it. So instead we'll put the - # machine on a private network. - config.vm.hostname = "mailinabox.lan" - config.vm.network "private_network", ip: "192.168.56.4" - - config.vm.provision :shell, :inline => <<-SH - # Set environment variables so that the setup script does - # not ask any questions during provisioning. We'll let the - # machine figure out its own public IP. - export NONINTERACTIVE=1 - export PUBLIC_IP=auto - export PUBLIC_IPV6=auto - export PRIMARY_HOSTNAME=auto - #export SKIP_NETWORK_CHECKS=1 - - # Start the setup script. - cd /vagrant - setup/start.sh -SH -end