Sha256: 54b8d52991efd1e4d06e407496381fcb3cf0ae8336db10761b9c54b255ab394d
Contents?: true
Size: 404 Bytes
Versions: 61
Compression:
Stored size: 404 Bytes
Contents
module Vagrant module Command class DestroyCommand < NamedBase register "destroy", "Destroy the environment, deleting the created virtual machines" def execute target_vms.each do |vm| if vm.created? vm.destroy else vm.env.ui.info I18n.t("vagrant.commands.common.vm_not_created") end end end end end end
Version data entries
61 entries across 61 versions & 5 rubygems