core: Print info message if provisioning is skipped by the sentinel file
Tell the user if the VM has already been provisioned and no `--[no-]provision` option has been specified. This should reduce the confusion of the 1.3+ functionality.
This commit is contained in:
parent
5bf07d858e
commit
cf1d94b22b
|
@ -22,10 +22,9 @@ module Vagrant
|
||||||
def call(env)
|
def call(env)
|
||||||
@env = env
|
@env = env
|
||||||
|
|
||||||
# Check if we're even provisioning things.
|
# Check if we already provisioned, and if so, disable the rest
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|
||||||
# Check if we already provisioned, and if so, disable the rest
|
|
||||||
ignore_sentinel = true
|
ignore_sentinel = true
|
||||||
ignore_sentinel = env[:provision_ignore_sentinel] if env.has_key?(:provision_ignore_sentinel)
|
ignore_sentinel = env[:provision_ignore_sentinel] if env.has_key?(:provision_ignore_sentinel)
|
||||||
sentinel_path = nil
|
sentinel_path = nil
|
||||||
|
@ -39,13 +38,8 @@ module Vagrant
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if env.has_key?(:provision_enabled)
|
# Store the value so that other actions can use it
|
||||||
# If we explicitly specified, take that value.
|
env[:provision_enabled] = enabled if !env.has_key?(:provision_enabled)
|
||||||
enabled = env[:provision_enabled]
|
|
||||||
else
|
|
||||||
# Otherwise store the value so that other actions can use it.
|
|
||||||
env[:provision_enabled] = enabled
|
|
||||||
end
|
|
||||||
|
|
||||||
# Ask the provisioners to modify the configuration if needed
|
# Ask the provisioners to modify the configuration if needed
|
||||||
provisioner_instances(env).each do |p|
|
provisioner_instances(env).each do |p|
|
||||||
|
@ -64,7 +58,7 @@ module Vagrant
|
||||||
end
|
end
|
||||||
|
|
||||||
# Actually provision if we enabled it
|
# Actually provision if we enabled it
|
||||||
if enabled
|
if env[:provision_enabled]
|
||||||
type_map = provisioner_type_map(env)
|
type_map = provisioner_type_map(env)
|
||||||
provisioner_instances(env).each do |p|
|
provisioner_instances(env).each do |p|
|
||||||
type_name = type_map[p]
|
type_name = type_map[p]
|
||||||
|
@ -81,6 +75,8 @@ module Vagrant
|
||||||
provisioner_name: type_name,
|
provisioner_name: type_name,
|
||||||
))
|
))
|
||||||
end
|
end
|
||||||
|
elsif !enabled
|
||||||
|
env[:ui].info(I18n.t("vagrant.actions.vm.provision.disabled_by_sentinel"))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1138,6 +1138,7 @@ en:
|
||||||
persisting: "Persisting the VM UUID (%{uuid})..."
|
persisting: "Persisting the VM UUID (%{uuid})..."
|
||||||
provision:
|
provision:
|
||||||
beginning: "Running provisioner: %{provisioner}..."
|
beginning: "Running provisioner: %{provisioner}..."
|
||||||
|
disabled_by_sentinel: "VM already provisioned. Run `vagrant provision` or use `--provision` to force it"
|
||||||
resume:
|
resume:
|
||||||
resuming: Resuming suspended VM...
|
resuming: Resuming suspended VM...
|
||||||
unpausing: |-
|
unpausing: |-
|
||||||
|
|
Loading…
Reference in New Issue