Sha256: 28f192a8815a3f2668c6d6443b245ffba5e6009c0c768c4861f7a9d5f0e6a82e
Contents?: true
Size: 862 Bytes
Versions: 62
Compression:
Stored size: 862 Bytes
Contents
module VagrantPlugins module GuestSolaris class Config < Vagrant.plugin("2", :config) attr_accessor :halt_timeout attr_accessor :halt_check_interval attr_accessor :suexec_cmd attr_accessor :device def initialize @halt_timeout = UNSET_VALUE @halt_check_interval = UNSET_VALUE @suexec_cmd = UNSET_VALUE @device = UNSET_VALUE end def finalize! if @halt_timeout != UNSET_VALUE puts "solaris.halt_timeout is deprecated and will be removed in Vagrant 1.7" end if @halt_check_interval != UNSET_VALUE puts "solaris.halt_check_interval is deprecated and will be removed in Vagrant 1.7" end @suexec_cmd = "sudo" if @suexec_cmd == UNSET_VALUE @device = "e1000g" if @device == UNSET_VALUE end end end end
Version data entries
62 entries across 55 versions & 7 rubygems