class VagrantPlugins::SecuredCloud::Action::ReleaseIpsConfirm
This class asks the user to confirm whether the public IPs of the VM managed by vagrant are to be released or put in the reserve pool of the VDC.
Public Class Methods
new(app, env)
click to toggle source
Calls superclass method
# File lib/secured-cloud-vagrant/actions/release_ips_confirm.rb, line 13 def initialize(app, env) @logger = Log4r::Logger.new('vagrant::secured_cloud::action::release_ips_confirm') @logger.debug("Confirming whether public IPs are to be released ...") message = I18n.t('secured_cloud_vagrant.commands.release_ips_confirmation') super(app, env, message) end