mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 08:55:35 -05:00
20 lines
426 B
Ruby
20 lines
426 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestFuntoo
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Funtoo guest"
|
|
description "Funtoo guest support."
|
|
|
|
guest(:funtoo, :gentoo) do
|
|
require_relative "guest"
|
|
Guest
|
|
end
|
|
|
|
guest_capability(:funtoo, :configure_networks) do
|
|
require_relative "cap/configure_networks"
|
|
Cap::ConfigureNetworks
|
|
end
|
|
end
|
|
end
|
|
end
|