From 1f7ed8eacac2092f4b934c8498020963984cb9c4 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Mon, 19 Aug 2024 01:54:05 -0400 Subject: [PATCH] add mergerfs to vagrantfiles --- Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 051fe620..5572d6e3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -11,7 +11,7 @@ Vagrant.configure("2") do |config| debian.vm.provision "file", source: "./", destination: "/home/vagrant/try" debian.vm.provision "shell", privileged: false, inline: " sudo apt-get update - sudo apt-get install -y git expect curl attr pandoc gcc make autoconf + sudo apt-get install -y git expect curl attr pandoc gcc make autoconf mergerfs sudo chown -R vagrant:vagrant try cd try scripts/run_tests.sh @@ -54,7 +54,7 @@ Vagrant.configure("2") do |config| debianlvm.vm.provision "file", source: "./", destination: "/home/vagrant/try" debianlvm.vm.provision "shell", privileged: false, inline: " sudo apt-get update - sudo apt-get install -y git expect lvm2 mergerfs curl attr pandoc gcc make autoconf + sudo apt-get install -y git expect lvm2 mergerfs curl attr pandoc gcc make autoconf mergerfs # Create an image for the lvm disk sudo fallocate -l 2G /root/lvm_disk.img @@ -95,7 +95,7 @@ Vagrant.configure("2") do |config| rocky.vm.box = "generic/rocky9" rocky.vm.provision "file", source: "./", destination: "/home/vagrant/try" rocky.vm.provision "shell", privileged: false, inline: " - sudo yum install -y git expect curl attr pandoc + sudo yum install -y git expect curl attr pandoc mergerfs sudo chown -R vagrant:vagrant try cd try TRY_TOP=$(pwd) scripts/run_tests.sh @@ -111,7 +111,7 @@ Vagrant.configure("2") do |config| fedora.vm.box = "generic/fedora33" fedora.vm.provision "file", source: "./", destination: "/home/vagrant/try" fedora.vm.provision "shell", privileged: false, inline: " - sudo yum install -y git expect curl attr pandoc + sudo yum install -y git expect curl attr pandoc mergerfs sudo chown -R vagrant:vagrant try cd try TRY_TOP=$(pwd) scripts/run_tests.sh