From c330811fc92c0d4d5f7043b5034d86a40f69e0a4 Mon Sep 17 00:00:00 2001 From: Andrew Shu Date: Thu, 9 Jul 2020 23:43:31 -0700 Subject: [PATCH] Vagrantfile: relax Salt pinned version to 2019.2 Fixes provisioning of a new VM. Old versions like 2019.2.3 may be moved to an archive and get an HTTP 404 error. Relaxing the pinned version allows setup to find newer patches, such as 2019.2.5. More info: https://github.com/saltstack/salt-enhancement-proposals/blob/752768b1ff900128b192776d950306cba985c99e/accepted/0022-old-releases.md --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 14c65c4..c5926e8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -25,7 +25,7 @@ Vagrant.configure(VAGRANT_CONFIG_VERSION) do |config| salt.log_level = "info" salt.install_type = "stable" - salt.version = "2019.2.3" + salt.version = "2019.2" end config.vm.provider "virtualbox" do |vb|