Add a log message when the VM master is missing
This commit is contained in:
parent
1e7c8e8d6c
commit
e2fadbcf08
|
@ -52,7 +52,11 @@ module VagrantPlugins
|
|||
" (id=#{env[:clone_id]}) - skipping import step.")
|
||||
return
|
||||
else
|
||||
env.delete(:clone_id)
|
||||
if env.delete(:clone_id)
|
||||
@logger.info("Deleting previous reference for master VM" +
|
||||
"'#{env[:machine].box.name}' (id=#{env[:clone_id]}) - " +
|
||||
"maybe it was removed manually")
|
||||
end
|
||||
end
|
||||
|
||||
env[:ui].info(I18n.t("vagrant.actions.vm.clone.setup_master"))
|
||||
|
|
Loading…
Reference in New Issue