Sha256: ffb4eddf355b9d06dc4ad6577a112b07841e24f4ea140f97162831990a5b2ffe
Contents?: true
Size: 596 Bytes
Versions: 6
Compression:
Stored size: 596 Bytes
Contents
# A general Vagrant system implementation for "solaris 11". # # Contributed by Jan Thomas Moldung <janth@moldung.no> module VagrantPlugins module GuestSolaris11 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 = 30 @halt_check_interval = 1 @suexec_cmd = 'sudo' @device = "net" end end end end
Version data entries
6 entries across 6 versions & 2 rubygems