Sha256: 37d94cba4abb2d3d859f8a3202bc996b96ef68399542a604b3685b534ef9c13e
Contents?: true
Size: 850 Bytes
Versions: 1
Compression:
Stored size: 850 Bytes
Contents
module VagrantPlugins module GuestSmartos class Config < Vagrant.plugin("2", :config) attr_accessor :halt_timeout attr_accessor :halt_check_interval # This sets the command to use to execute items as a superuser. sudo is default attr_accessor :suexec_cmd attr_accessor :device def initialize @halt_timeout = UNSET_VALUE @halt_check_interval = UNSET_VALUE @suexec_cmd = 'pfexec' @device = "e1000g" end def finalize! if @halt_timeout != UNSET_VALUE puts "smartos.halt_timeout is deprecated and will be removed in Vagrant 1.7" end if @halt_check_interval != UNSET_VALUE puts "smartos.halt_check_interval is deprecated and will be removed in Vagrant 1.7" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-cloudstack-1.2.0 | vendor/bundle/bundler/gems/vagrant-c84e05fd063f/plugins/guests/smartos/config.rb |