From 270913b7b92c388e0abeb366c37706aa8e99ff20 Mon Sep 17 00:00:00 2001 From: Govinda Fichtner Date: Tue, 7 May 2013 11:38:46 +0200 Subject: [PATCH] fix uninitialized constant error for gentoo plugin --- plugins/guests/gentoo/cap/change_host_name.rb | 2 +- plugins/guests/gentoo/cap/configure_networks.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/guests/gentoo/cap/change_host_name.rb b/plugins/guests/gentoo/cap/change_host_name.rb index 4c0f50d8f..a8112b7d5 100644 --- a/plugins/guests/gentoo/cap/change_host_name.rb +++ b/plugins/guests/gentoo/cap/change_host_name.rb @@ -1,5 +1,5 @@ module VagrantPlugins - module GuestFreeBSD + module GuestGentoo module Cap class ChangeHostName def self.change_host_name(machine, name) diff --git a/plugins/guests/gentoo/cap/configure_networks.rb b/plugins/guests/gentoo/cap/configure_networks.rb index ce7883f8c..ad534b437 100644 --- a/plugins/guests/gentoo/cap/configure_networks.rb +++ b/plugins/guests/gentoo/cap/configure_networks.rb @@ -3,9 +3,9 @@ require "tempfile" require "vagrant/util/template_renderer" module VagrantPlugins - module GuestFreeBSD + module GuestGentoo module Cap - class ChangeHostName + class ConfigureNetworks include Vagrant::Util def self.configure_networks(machine, networks)