Sha256: 33ca97759734899f987d79edd61255786fca5459843557de1c5a59319ecc1ebb

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

module VagrantPlugins
  module DockerProvisioner
    module Cap
      module Redhat
        module DockerStartService
          def self.docker_start_service(machine)
            machine.communicate.sudo("service docker start")
            # TODO :: waiting to start
            sleep 5
            machine.communicate.sudo("chkconfig docker on")
          end
        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/provisioners/docker/cap/redhat/docker_start_service.rb