forked from oasiswork/zimsoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
26 lines (20 loc) · 834 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "8.0.4p" do |that|
that.vm.box = "zimbra-8.0.4p"
that.vm.box_url = "http://vagrant.owk.cc/zimbra-8.0.4p.box"
end
config.vm.define "8.0.5" do |that|
that.vm.box = "zimbra-8.0.5"
that.vm.box_url = "http://vagrant.owk.cc/zimbra-8.0.5.box"
end
# hostname
config.vm.hostname = "zimbratest.example.com"
config.vm.network :private_network, ip: "192.168.33.10"
# Adds a preauth key for the first domain and provision users/domains, and sets admin password
config.vm.provision "shell",
inline: "sudo su - zimbra -c 'cat /vagrant/tests/*.zmprov |zmprov > /dev/null 2>&1 ;/bin/true'"
end