1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-04-01 21:27:22 +02:00

Add vagrant-parallels provider support

This commit is contained in:
Yoann COLIN
2018-09-20 22:33:17 +02:00
parent 504a9b0abc
commit 0e0b767a04
2 changed files with 12 additions and 2 deletions

10
Vagrantfile vendored
View File

@@ -2,8 +2,14 @@
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu14.04"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provider "virtualbox" do |v|
config.vm.box = "ubuntu14.04"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
end
config.vm.provider "parallels" do |p, override|
override.vm.box = "parallels/ubuntu-14.04"
end
if Vagrant.has_plugin?("vagrant-cachier")
# Configure cached packages to be shared between instances of the same base box.