Sha256: 9c24b2991dacc99c8992865195a9a8910689f1abd046593a13cf4e825b910a34
Contents?: true
Size: 498 Bytes
Versions: 12
Compression:
Stored size: 498 Bytes
Contents
require_relative "../container/config" module VagrantPlugins module DockerProvisioner class Config < VagrantPlugins::ContainerProvisioner::Config def post_install_provision(name, **options, &block) # Abort raise DockerError, :wrong_provisioner if options[:type] == "docker" proxy = VagrantPlugins::Kernel_V2::VMConfig.new proxy.provision(name, **options, &block) @post_install_provisioner = proxy.provisioners.first end end end end
Version data entries
12 entries across 12 versions & 3 rubygems