Modifications apportées au dossier des vagrantfiles, ainsi qu'au

vagrantfile template.
This commit is contained in:
Guillaume Emorine
2025-02-07 08:23:01 +01:00
parent 6b64852985
commit 6e55f7e8b6
3 changed files with 71 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "debian/bookworm64"
config.vm.box = "remplacer"
config.vm.hostname = "renommer"
# Disable automatic box update checking. If you disable this, then
@@ -59,7 +59,7 @@ Vagrant.configure("2") do |config|
#
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = true
vb.gui = false
# Customize the amount of memory on the VM:
vb.memory = "1024"
@@ -74,6 +74,6 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
timedatectl set-timezone Europe/Paris
apt-get update
apt-get install -y vim wget curl neovim mc git
apt-get install -y vim wget curl neovim mc git neofetch
SHELL
end