2012-04-19 00:38:20 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestLinux
|
2012-11-07 05:14:45 +00:00
|
|
|
class Config < Vagrant.plugin("2", :config)
|
2012-04-19 00:38:20 +00:00
|
|
|
attr_accessor :halt_timeout
|
|
|
|
attr_accessor :halt_check_interval
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@halt_timeout = 30
|
|
|
|
@halt_check_interval = 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|