@@ -11,7 +11,7 @@ Vagrant.configure("2") do |config|
11
11
debian . vm . provision "file" , source : "./" , destination : "/home/vagrant/try"
12
12
debian . vm . provision "shell" , privileged : false , inline : "
13
13
sudo apt-get update
14
- sudo apt-get install -y git expect
14
+ sudo apt-get install -y git expect curl
15
15
sudo chown -R vagrant:vagrant try
16
16
cd try
17
17
scripts/run_tests.sh
@@ -39,7 +39,7 @@ Vagrant.configure("2") do |config|
39
39
debianlvm . vm . provision "file" , source : "./" , destination : "/home/vagrant/try"
40
40
debianlvm . vm . provision "shell" , privileged : false , inline : "
41
41
sudo apt-get update
42
- sudo apt-get install -y git expect lvm2 mergerfs
42
+ sudo apt-get install -y git expect lvm2 mergerfs curl
43
43
44
44
# Create an image for the lvm disk
45
45
sudo fallocate -l 2G /root/lvm_disk.img
@@ -74,7 +74,7 @@ Vagrant.configure("2") do |config|
74
74
rocky . vm . box = "generic/rocky9"
75
75
rocky . vm . provision "file" , source : "./" , destination : "/home/vagrant/try"
76
76
rocky . vm . provision "shell" , privileged : false , inline : "
77
- sudo yum install -y git expect
77
+ sudo yum install -y git expect curl
78
78
sudo chown -R vagrant:vagrant try
79
79
cd try
80
80
TRY_TOP=$(pwd) scripts/run_tests.sh
@@ -86,7 +86,7 @@ Vagrant.configure("2") do |config|
86
86
fedora . vm . box = "generic/fedora33"
87
87
fedora . vm . provision "file" , source : "./" , destination : "/home/vagrant/try"
88
88
fedora . vm . provision "shell" , privileged : false , inline : "
89
- sudo yum install -y git expect
89
+ sudo yum install -y git expect curl
90
90
sudo chown -R vagrant:vagrant try
91
91
cd try
92
92
TRY_TOP=$(pwd) scripts/run_tests.sh
0 commit comments