Browse Source

Vagrantfile: pin Salt version to 2019.2.3

The new version of Salt ("3000") seems to have a number of bugs,
including not being able to handle "unless" checks, which the Tildes
states use frequently. Because of this, creating a new dev environment
currently doesn't work. This pins Salt to the previous stable version
for now.

Here's the relevant bug for "unless" specifically:
https://github.com/saltstack/salt/issues/56131

And the overall release notes:
https://docs.saltstack.com/en/latest/topics/releases/3000.html
merge-requests/102/head
Deimos 5 years ago
parent
commit
4dc99d9fda
  1. 3
      Vagrantfile

3
Vagrantfile

@ -23,6 +23,9 @@ Vagrant.configure(VAGRANT_CONFIG_VERSION) do |config|
salt.run_highstate = true
salt.verbose = true
salt.log_level = "info"
salt.install_type = "stable"
salt.version = "2019.2.3"
end
config.vm.provider "virtualbox" do |vb|

Loading…
Cancel
Save