1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

Change the default behavior to only prepare jammy unless "all" given on command line

This commit is contained in:
downtownallday 2022-10-29 09:55:51 -04:00
parent 7fa070aed8
commit a1c8b79c6f

View File

@ -11,12 +11,15 @@
# load defaults for MIABLDAP_GIT and MIABLDAP_FINAL_RELEASE_TAG_BIONIC64 (make available to Vagrantfile) # load defaults for MIABLDAP_GIT and MIABLDAP_FINAL_RELEASE_TAG_BIONIC64 (make available to Vagrantfile)
pushd "../../.." >/dev/null pushd "../../.." >/dev/null
source tests/lib/color-output.sh
source tests/system-setup/setup-defaults.sh || exit 1 source tests/system-setup/setup-defaults.sh || exit 1
popd >/dev/null popd >/dev/null
H1 "Destroy any running boxes"
vagrant destroy -f vagrant destroy -f
rm -f prepcode.txt rm -f prepcode.txt
H1 "Ensure plugins are installed"
for plugin in "vagrant-vbguest" "vagrant-reload" for plugin in "vagrant-vbguest" "vagrant-reload"
do do
if ! vagrant plugin list | grep -F "$plugin" >/dev/null; then if ! vagrant plugin list | grep -F "$plugin" >/dev/null; then
@ -24,32 +27,40 @@ do
fi fi
done done
H1 "Upgrade base boxes"
vagrant box update vagrant box update
boxes=( boxes=(
"preloaded-ubuntu-bionic64"
"preloaded-ubuntu-jammy64" "preloaded-ubuntu-jammy64"
"preloaded-ubuntu-bionic64"
) )
# preload packages from source of the following git tags. empty string # preload packages from source of the following git tags. empty string
# means use the current source tree # means use the current source tree
tags=( tags=(
"$MIABLDAP_FINAL_RELEASE_TAG_BIONIC64"
"" ""
"$MIABLDAP_FINAL_RELEASE_TAG_BIONIC64"
) )
try_reboot=( try_reboot=(
false
true true
false
) )
idx=0 idx=0
for box in "${boxes[@]}" for box in "${boxes[@]}"
do do
if [ ! -z "$1" -a "$1" != "$box" ]; then if [ -z "$1" ]; then
let idx+=1 # no cli arguments - only process first box
continue [ $idx -ge 1 ] && break
else
# cli argument specifies "all" or a named box
if [ "$1" != "all" -a "$1" != "$box" ]; then
let idx+=1
continue
fi
fi fi
H1 "Provision: $box"
export RELEASE_TAG="${tags[$idx]}" export RELEASE_TAG="${tags[$idx]}"
vagrant up $box | tee /tmp/$box.out vagrant up $box | tee /tmp/$box.out
upcode=$? upcode=$?