Sha256: 6410192bba173af5afc21d6879d28890e72637f170942a7332550f812d52d131

Contents?: true

Size: 786 Bytes

Versions: 1

Compression:

Stored size: 786 Bytes

Contents

module VagrantPlugins
  module DockerProvider
    module Action
      class IsHostMachineCreated
        def initialize(app, env)
          @app = app
        end

        def call(env)
          if !env[:machine].provider.host_vm?
            env[:result] = true
            return @app.call(env)
          end

          host_machine = env[:machine].provider.host_vm
          env[:result] =
            host_machine.state.id != Vagrant::MachineState::NOT_CREATED_ID

          # If the host machine isn't created, neither are we. It is
          # important we set this to nil here so that global-status
          # sees the right thing.
          env[:machine].id = nil if !env[:result]

          @app.call(env)
        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/providers/docker/action/is_host_machine_created.rb