mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2026-03-04 15:54:48 +01:00
Install latest roundcube (master) which supports php 8.1
This commit is contained in:
15
tests/vagrant/vanilla/Vagrantfile
vendored
15
tests/vagrant/vanilla/Vagrantfile
vendored
@@ -10,10 +10,23 @@ Vagrant.configure("2") do |config|
|
||||
|
||||
config.vm.define "vanilla" do |m1|
|
||||
m1.vm.provision :shell, :inline => <<-SH
|
||||
cat >/tmp/provision.sh <<EOF
|
||||
#!/bin/bash
|
||||
if [ \$EUID -ne 0 ]; then
|
||||
echo "Must be root"
|
||||
exit 1
|
||||
fi
|
||||
cd /mailinabox
|
||||
export PRIMARY_HOSTNAME=vanilla.local
|
||||
export FEATURE_MUNIN=false
|
||||
tests/system-setup/vanilla.sh
|
||||
export FEATURE_NEXTCLOUD=false
|
||||
tests/system-setup/vanilla.sh \
|
||||
--enable-mod=roundcube-master \
|
||||
--enable-mod=roundcube-debug \
|
||||
--enable-mod=rcmcarddav-composer
|
||||
EOF
|
||||
chmod +x /tmp/provision.sh
|
||||
/tmp/provision.sh
|
||||
SH
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user