1
1

vcpu 2 -> 1

This commit is contained in:
Márkus Sándor 2023-07-30 18:49:56 +02:00
parent 3def0645ab
commit f44b9127d8

8
Vagrantfile vendored
View File

@ -5,7 +5,7 @@ Vagrant.configure("2") do |config|
vm1.vm.box = "centos/7"
vm1.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.cpus = 2
vb.cpus = 1
end
vm1.vm.provision "shell", inline: <<-SHELL
yum install mc epel-release httpd net-tools -y
@ -21,7 +21,7 @@ Vagrant.configure("2") do |config|
vm2.vm.box = "almalinux/8"
vm2.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.cpus = 2
vb.cpus = 1
end
vm2.vm.provision "shell", inline: <<-SHELL
dnf install mc epel-release httpd net-tools -y
@ -37,7 +37,7 @@ Vagrant.configure("2") do |config|
vm3.vm.box = "ubuntu/jammy64"
vm3.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.cpus = 2
vb.cpus = 1
end
vm3.vm.provision "shell", inline: <<-SHELL
apt-get update && apt-get upgrade -y
@ -53,7 +53,7 @@ Vagrant.configure("2") do |config|
vm4.vm.box = "debian/bullseye64"
vm4.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.cpus = 2
vb.cpus = 1
end
vm4.vm.provision "shell", inline: <<-SHELL
apt-get update && apt-get upgrade -y