1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-01 23:57:05 +00:00
mailinabox/tests/lxd/majorupgrade/Vagrantfile

62 lines
1.8 KiB
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.
#####
load '../funcs.rb'
# major upgrade Ubuntu 18.04 (bionic) -> Ubuntu 22.04 (jammy)
Vagrant.configure("2") do |config|
config.vm.synced_folder "../../..", "/mailinabox", id: "mailinabox", automount: false
config.vm.network "public_network", bridge: "#$default_network_interface"
config.vm.define "major-upgrade-oldvm" do |m1|
use_preloaded_box m1, "ubuntu/bionic64", ".."
m1.vm.provision :shell, :inline => <<-SH
# setup vanilla system, populated with some data
cd /mailinabox
export PRIMARY_HOSTNAME=majorupgrade.local
export FEATURE_MUNIN=false
source tests/system-setup/setup-defaults.sh
tests/system-setup/vanilla.sh \
--checkout-repo="$MIABLDAP_GIT" \
--checkout-treeish="$MIABLDAP_FINAL_RELEASE_TAG_BIONIC64" \
--checkout-targetdir="$HOME/miabldap-bionic" \
--populate=basic \
--populate=totpuser \
--capture-state=/tmp/state/oldvm \
|| exit 1
SH
end
# config.vm.provider "virtualbox" do |v|
# v.memory = 512
# end
config.vm.define "major-upgrade-newvm" do |m2|
use_preloaded_box m2, "ubuntu/jammy64", ".."
m2.vm.provision :shell, :inline => <<-SH
cd /mailinabox
export PRIMARY_HOSTNAME=majorupgrade.local
export FEATURE_MUNIN=true
tests/system-setup/from-backup.sh \
"#{ENV['storage_user']}" \
"#{ENV['duplicity_files']}" \
"#{ENV['secret_key']}" \
"#{ENV['restore_to']}" \
--capture-state=/tmp/state/newvm \
|| exit 1
SH
end
end