26 lines
566 B
Ruby
26 lines
566 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module GuestFuntoo
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "Funtoo guest"
|
|
description "Funtoo guest support."
|
|
|
|
guest(:funtoo, :linux) do
|
|
require_relative "guest"
|
|
Guest
|
|
end
|
|
|
|
guest_capability(:funtoo, :change_host_name) do
|
|
require_relative "cap/change_host_name"
|
|
Cap::ChangeHostName
|
|
end
|
|
|
|
guest_capability(:funtoo, :configure_networks) do
|
|
require_relative "cap/configure_networks"
|
|
Cap::ConfigureNetworks
|
|
end
|
|
end
|
|
end
|
|
end
|