mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
13 lines
275 B
Ruby
13 lines
275 B
Ruby
module VagrantPlugins
|
|
module GuestLinux
|
|
class Config < Vagrant.plugin("1", :config)
|
|
attr_accessor :halt_timeout
|
|
attr_accessor :halt_check_interval
|
|
|
|
def initialize
|
|
@halt_timeout = 30
|
|
@halt_check_interval = 1
|
|
end
|
|
end
|
|
end
|
|
end
|