vagrant/plugins/guests/gentoo/plugin.rb

26 lines
594 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 File.expand_path("../guest", __FILE__)
Guest
end
2013-04-04 19:09:40 +00:00
guest_capability("gentoo", "change_host_name") do
require_relative "cap/change_host_name"
Cap::ChangeHostName
end
guest_capability("gentoo", "configure_networks") do
require_relative "cap/configure_networks"
Cap::ConfigureNetworks
end
end
end
end