Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

# VirtualBox is the only supported provider. libvirt/KVM is deliberately not
# used here -- it cannot share AMD-V with VirtualBox on the same host, and the
# other Forail environments are VirtualBox.
ENV["VAGRANT_DEFAULT_PROVIDER"] ||= "virtualbox"

Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-24.04"
config.vm.hostname = "forail-deploy"
Expand All @@ -18,11 +23,6 @@ Vagrant.configure("2") do |config|
vb.cpus = 4
end

config.vm.provider "libvirt" do |lv|
lv.memory = 8192
lv.cpus = 4
end

config.vm.synced_folder ".", "/forail-deploy", type: "rsync",
rsync__exclude: [".git/", "*.pyc", "__pycache__/"]

Expand Down
Loading