Sha256: 4e00cf72a5694bae6a657bb4cfb4dd3973f4f78c588f5d5a24883265b18c27f0
Contents?: true
Size: 610 Bytes
Versions: 40
Compression:
Stored size: 610 Bytes
Contents
module Vagrant module Guest class Linux < Vagrant::Guest::Base # A custom config class which will be made accessible via `config.linux` # This is not necessary for all system implementers, of course. However, # generally, Vagrant tries to make almost every aspect of its execution # configurable, and this assists that goal. class LinuxConfig < 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 end
Version data entries
40 entries across 40 versions & 6 rubygems