Upgrade to Debian 12, with minor updates

- Upgraded project to Debian 12
- .vscode added to .gitignore
- LICENSE formatting updated
- Copyright refreshed for 2023
- Added Libvirt settings
- Refactored packages to inventory-specific
- Committed missing autostart-scripts
This commit is contained in:
2023-06-13 01:04:39 -04:00
parent 8228b78c4c
commit b3e232451c
11 changed files with 102 additions and 37 deletions

8
Vagrantfile vendored
View File

@@ -1,8 +1,14 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/bullseye64"
config.vm.box = "debian/bookworm64"
config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder ".", "/vagrant", disabled: true
# Libvrit settings
config.vm.provider :libvirt do |domain|
domain.memory = 4096
domain.cpus = 2
end
# Boot with a GUI in VirtualBox
config.vm.provider "virtualbox" do |vbox|
vbox.customize ["modifyvm", :id, "--vram", "128",