vagrant/plugins/guests/gentoo/plugin.rb

26 lines
566 B
Ruby
Raw Normal View History

require "vagrant"
module VagrantPlugins
module GuestGentoo
2012-11-07 05:14:45 +00:00
class Plugin < Vagrant.plugin("2")
name "Gentoo guest"
description "Gentoo guest support."
guest(:gentoo, :linux) do
require_relative "guest"
Guest
end
2013-04-04 19:09:40 +00:00
guest_capability(:gentoo, :change_host_name) do
2013-04-04 19:09:40 +00:00
require_relative "cap/change_host_name"
Cap::ChangeHostName
end
guest_capability(:gentoo, :configure_networks) do
2013-04-04 19:09:40 +00:00
require_relative "cap/configure_networks"
Cap::ConfigureNetworks
end
end
end
end