# File lib/fog/libvirt/models/compute/server.rb, line 89 def destroy(options={ :destroy_volumes => false}) poweroff unless stopped? connection.vm_action(uuid, :undefine) volumes.each { |vol| vol.destroy } if options[:destroy_volumes] true end