From 33a488e3a80bb6641e92f5357f2002da34853a88 Mon Sep 17 00:00:00 2001 From: Adam Jensen Date: Sun, 21 Nov 2021 15:57:26 -0500 Subject: [PATCH] Don't need to grow filesystem --- Vagrantfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 8a722d4..48a607a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,8 +10,6 @@ Vagrant.configure("2") do |config| end config.vm.provision "shell", inline: <<~SHELL - growfs -y / - pkg bootstrap pkg update pkg install -y curl bash git gmake llvm @@ -32,6 +30,9 @@ Vagrant.configure("2") do |config| ~/.rbenv/bin/rbenv global 3.0.2 curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.56.0 + + df -h + du -hs /home/vagrant EOF SHELL