Added keybase vagrant box and updated the docs

This commit is contained in:
Michele Cereda
2022-04-24 15:27:15 +02:00
parent 62cae6ee9f
commit e2f2dbfec8
3 changed files with 101 additions and 42 deletions

View File

@@ -6,23 +6,22 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb|
vb.name = "xfce4 latest"
vb.memory = "3072"
vb.cpus = 1
vb.memory = "2048"
vb.gui = true
vb.customize ["modifyvm", :id, "--vram", "64"]
vb.customize ["modifyvm", :id, "--graphicscontroller", "vmsvga"]
vb.customize ["modifyvm", :id, "--cpuexecutioncap", "50"]
end
config.vm.provision "shell", inline: <<-SHELL
pacman --noconfirm \
--remove --nosave --recursive --unneeded \
virtualbox-guest-utils-nox
pacman --noconfirm \
--sync --needed --noprogressbar --quiet --refresh \
virtualbox-guest-utils
SHELL
config.vm.provision "shell", path: "../../scripts/archlinux/xfce4.install.sh"
config.vm.provision "shell", inline: <<-SHELL
shutdown -r now
SHELL
config.vm.provision "shell", reboot: true
end