759b1c5f80
check if a lxc-template file was included on .box
12 lines
289 B
Ruby
12 lines
289 B
Ruby
module Vagrant
|
|
module LXC
|
|
module Errors
|
|
class ExecuteError < Vagrant::Errors::VagrantError
|
|
error_key(:lxc_execute_error)
|
|
end
|
|
class TemplateFileMissing < Vagrant::Errors::VagrantError
|
|
error_key(:lxc_template_file_missing)
|
|
end
|
|
end
|
|
end
|
|
end
|