Merge pull request #10474 from briancain/ensure-install_type-set-with-version

Fixes #10358: Add validation error in salt provider for certain options
This commit is contained in:
Brian Cain 2018-12-03 15:58:59 -08:00 committed by GitHub
commit d561116d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -177,6 +177,10 @@ module VagrantPlugins
errors << I18n.t("vagrant.provisioners.salt.python_version")
end
if @version && !@install_type
errors << I18n.t("vagrant.provisioners.salt.version_type_missing")
end
return {"salt provisioner" => errors}
end
end

View File

@ -2706,9 +2706,11 @@ en:
must_accept_keys: |-
You must accept keys when running highstate with master!
args_array: |-
You must set this value as an array.
You must set `args_array` value as an array.
python_version: |-
You must set this as an integer or string that represents an integer.
You must set `python_version` as an integer or string that represents an integer.
version_type_missing: |-
You must set the option `install_type` when specifying a `version`.
pushes:
file: