added some Vagrantfiles to the repository

This commit is contained in:
2026-07-12 16:37:24 -04:00
parent e53d6255e0
commit 35a2f98fc0
2 changed files with 20 additions and 0 deletions

10
staging0.test/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/trixie64"
config.vm.network "public_network", ip: "192.168.122.234", network_name: virbr0
config.vm.provider "libvirt" do |lv|
lv.memory = 2048
lv.cpus = 3
lv.driver = "kvm"
end
config.vm.box_version = "13.20260519.1"
end

10
staging1.test/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/trixie64"
config.vm.network "public_network", ip: "192.168.200.201", network_name: virbr1
config.vm.provider "libvirt" do |lv|
lv.memory = 2048
lv.cpus = 3
lv.driver = "kvm"
end
config.vm.box_version = "13.20260519.1"
end