class Vagrant::LXC::Action::DestroyConfirm

Public Class Methods

new(app, env) click to toggle source
Calls superclass method
# File lib/vagrant-lxc/action/destroy_confirm.rb, line 7
def initialize(app, env)
  force_key = :force_confirm_destroy
  message   = I18n.t("vagrant.commands.destroy.confirmation",
                     :name => env[:machine].name)

  super(app, env, message, force_key)
end