Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update fedora box, install mergerfs
Browse files Browse the repository at this point in the history
ezrizhu committed Aug 19, 2024
1 parent 07a3ffd commit aae3367
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -95,7 +95,9 @@ 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 mergerfs
sudo yum install -y git expect curl attr pandoc
wget https://github.com/trapexit/mergerfs/releases/download/2.40.2/mergerfs-2.40.2-1.el9.x86_64.rpm
sudo rpm -i mergerfs-2.40.2-1.el9.x86_64.rpm
sudo chown -R vagrant:vagrant try
cd try
TRY_TOP=$(pwd) scripts/run_tests.sh
@@ -107,11 +109,13 @@ Vagrant.configure("2") do |config|
end
#
# Regular rocky testing box
config.vm.define "fedora33" do |fedora|
fedora.vm.box = "generic/fedora33"
config.vm.define "fedora39" do |fedora|
fedora.vm.box = "generic/fedora39"
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 mergerfs
sudo yum install -y git expect curl attr pandoc
wget https://github.com/trapexit/mergerfs/releases/download/2.40.2/mergerfs-2.40.2-1.fc39.x86_64.rpm
sudo rpm -i mergerfs-2.40.2-1.fc39.x86_64.rpm
sudo chown -R vagrant:vagrant try
cd try
TRY_TOP=$(pwd) scripts/run_tests.sh

0 comments on commit aae3367

Please sign in to comment.