From c42dd980f0a8e401dc111e373a8f6b0b1baa3f36 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 30 Jan 2024 07:32:12 -0500 Subject: [PATCH] [8.12] [EDR Workflows] Remove apt-get upgrade from vagrantfile (#175864) (#175873) # Backport This will backport the following commits from `main` to `8.12`: - [[EDR Workflows] Remove apt-get upgrade from vagrantfile (#175864)](https://github.com/elastic/kibana/pull/175864) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Tomasz Ciecierski --- .../scripts/endpoint/common/vagrant/Vagrantfile | 1 - 1 file changed, 1 deletion(-) diff --git a/x-pack/plugins/security_solution/scripts/endpoint/common/vagrant/Vagrantfile b/x-pack/plugins/security_solution/scripts/endpoint/common/vagrant/Vagrantfile index 31819889f38e0..59c5bf12a1627 100644 --- a/x-pack/plugins/security_solution/scripts/endpoint/common/vagrant/Vagrantfile +++ b/x-pack/plugins/security_solution/scripts/endpoint/common/vagrant/Vagrantfile @@ -33,6 +33,5 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: "mkdir #{agentDestinationFolder}" config.vm.provision "shell", inline: "tar -zxf #{cachedAgentFilename} --directory #{agentDestinationFolder} --strip-components=1 && rm -f #{cachedAgentFilename}" config.vm.provision "shell", inline: "sudo apt-get update" - config.vm.provision "shell", inline: "sudo apt-get upgrade" config.vm.provision "shell", inline: "sudo apt-get install unzip" end