Remove freeBSD config because it isn't used anymore

This commit is contained in:
Mitchell Hashimoto 2013-04-04 11:50:05 -07:00
parent 0e4e347308
commit 8bf9fb17b1
2 changed files with 0 additions and 18 deletions

View File

@ -1,13 +0,0 @@
module VagrantPlugins
module GuestFreeBSD
class Config < Vagrant.plugin("2", :config)
attr_accessor :halt_timeout
attr_accessor :halt_check_interval
def initialize
@halt_timeout = 30
@halt_check_interval = 1
end
end
end
end

View File

@ -6,11 +6,6 @@ module VagrantPlugins
name "FreeBSD guest"
description "FreeBSD guest support."
config("freebsd") do
require File.expand_path("../config", __FILE__)
Config
end
guest("freebsd") do
require File.expand_path("../guest", __FILE__)
Guest