14 lines
270 B
Ruby
14 lines
270 B
Ruby
|
module VagrantPlugins
|
||
|
module GuestFreeBSD
|
||
|
class Config < Vagrant::Config::Base
|
||
|
attr_accessor :halt_timeout
|
||
|
attr_accessor :halt_check_interval
|
||
|
|
||
|
def initialize
|
||
|
@halt_timeout = 30
|
||
|
@halt_check_interval = 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|