class Vagrant::LXC::Action::RemoveTemporaryFiles

Public Class Methods

new(app, env) click to toggle source
# File lib/vagrant-lxc/action/remove_temporary_files.rb, line 5
def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant::lxc::action::remove_tmp_files")
end

Public Instance Methods

call(env) click to toggle source
# File lib/vagrant-lxc/action/remove_temporary_files.rb, line 10
def call(env)
  # Continue execution, we need the container to be stopped
  @app.call env

  if env[:machine].state.id == :stopped
    @logger.debug 'Removing temporary files'
    tmp_path = env[:machine].provider.driver.rootfs_path.join('tmp')
    env[:machine].provider.sudo_wrapper.run('rm', '-rf', "#{tmp_path}/*")
  end
end