Skip to content

Commit

Permalink
Merge pull request #1597 from wazuh/fix_ova_ram-4.2
Browse files Browse the repository at this point in the history
Increase ram in OVA vagrantfile
  • Loading branch information
okynos committed May 31, 2022
2 parents 00eeb19 + 27ce9da commit f247a2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.6
4.2.7
4 changes: 2 additions & 2 deletions ova/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Vagrant.configure("2") do |config|
config.vm.hostname = "wazuh-manager"
config.vm.provider "virtualbox" do |vb|
vb.name = "vm_wazuh"
vb.memory = "4096"
vb.memory = "5120"
vb.cpus = "4"
end

Expand All @@ -19,5 +19,5 @@ Vagrant.configure("2") do |config|
config.vm.provision :shell, path: "provision.sh", :args => "#{ENV['PACKAGES_REPOSITORY']} #{ENV['DEBUG']}"
# Provision cleanup stage
config.vm.provision :shell, path: "assets/postProvision.sh", :args => "#{ENV['DEBUG']}"

end

0 comments on commit f247a2e

Please sign in to comment.