15 lines
281 B
Ruby
15 lines
281 B
Ruby
|
require "vagrant"
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module GuestGentoo
|
||
|
autoload :Guest, File.expand_path("../guest", __FILE__)
|
||
|
|
||
|
class Plugin < Vagrant.plugin("1")
|
||
|
name "Gentoo guest"
|
||
|
description "Gentoo guest support."
|
||
|
|
||
|
guest("gentoo") { Guest }
|
||
|
end
|
||
|
end
|
||
|
end
|