Sha256: cc2ee5395ed36ef2b8d1e6f962f9647b685595f82cb56ead335baf7e15f29087
Contents?: true
Size: 466 Bytes
Versions: 3
Compression:
Stored size: 466 Bytes
Contents
module VagrantPlugins module VagrantCommunicatorDocker class Config < Vagrant.plugin('2', :config) attr_accessor :bash_shell attr_accessor :bash_wait def initialize @bash_shell = UNSET_VALUE @bash_wait = UNSET_VALUE end def finalize! @bash_shell = '/bin/bash' if @bash_shell == UNSET_VALUE @bash_wait = 10 if @bash_wait == UNSET_VALUE end end end end
Version data entries
3 entries across 3 versions & 1 rubygems