Mitchell Hashimoto 1d2beff649 Guests to V2
2012-11-06 21:14:45 -08:00

14 lines
277 B
Ruby

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