[playbook] try to install Drupal on debian bookworm

it fails...
This commit is contained in:
bronsen 2025-03-03 19:53:31 +01:00
parent 13308f1b54
commit 86ae57c5c7
5 changed files with 220 additions and 2 deletions

16
Vagrantfile vendored
View file

@ -23,3 +23,19 @@ Vagrant.configure("2") do |config|
db.vm.network :private_network, ip: "192.168.60.6"
end
end
Vagrant.configure("2") do |config|
config.vm.box = "generic/debian12"
config.ssh.insert_key = false
config.vm.synced_folder "." "/vagrant", disabled: true
config.vm.provider :virtualbox do |v|
v.memory = 512
v.linked_clone = true
end
config.vm.define "deb" do |app|
app.vm.hostname = "deb.test"
app.vm.network :private_network, ip: "192.168.60.7"
end
end