Sha256: 44b88ba21a4dd2d707ed486575d1fc23479b5248bd5ac4ee7c847d166eb68ed3
Contents?: true
Size: 1.55 KB
Versions: 3
Compression:
Stored size: 1.55 KB
Contents
require 'vagrant/errors' module Vagrant module LXC module Errors class ExecuteError < Vagrant::Errors::VagrantError error_key(:lxc_execute_error) attr_reader :stderr, :stdout def initialize(message, *args) super if message.is_a?(Hash) @stderr = message[:stderr] @stdout = message[:stdout] end end end class NamespacesNotSupported < Vagrant::Errors::VagrantError end class LxcLinuxRequired < Vagrant::Errors::VagrantError error_key(:lxc_linux_required) end class LxcNotInstalled < Vagrant::Errors::VagrantError error_key(:lxc_not_installed) end class ContainerAlreadyExists < Vagrant::Errors::VagrantError error_key(:lxc_container_already_exists) end class CommandNotSupported < Vagrant::Errors::VagrantError error_key(:lxc_command_not_supported) end # Box related errors class TemplateFileMissing < Vagrant::Errors::VagrantError error_key(:lxc_template_file_missing) end class TemplatesDirMissing < Vagrant::Errors::VagrantError error_key(:lxc_templates_dir_missing) end class RootFSTarballMissing < Vagrant::Errors::VagrantError error_key(:lxc_invalid_box_version) end class IncompatibleBox < Vagrant::Errors::VagrantError error_key(:lxc_incompatible_box) end class RedirNotInstalled < Vagrant::Errors::VagrantError error_key(:lxc_redir_not_installed) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-lxc-1.2.1 | lib/vagrant-lxc/errors.rb |
vagrant-lxc-1.2.0 | lib/vagrant-lxc/errors.rb |
vagrant-lxc-1.1.0 | lib/vagrant-lxc/errors.rb |