Sha256: 3a14a28c0b85e55ca870a5b50434890cb4ee99bae2974855ade5706da1899a24
Contents?: true
Size: 641 Bytes
Versions: 40
Compression:
Stored size: 641 Bytes
Contents
module Vagrant module Systems class Linux < Vagrant::Systems::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 configures :linux 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 & 5 rubygems