Sha256: 7ce1d6262ab97d35aa3074eff91130324570110da9afb19e84402a450dc18167

Contents?: true

Size: 328 Bytes

Versions: 4

Compression:

Stored size: 328 Bytes

Contents

module Jets::Cfn
  class Bootstrap
    def initialize(options = {})
      @options = options.merge(bootstrap: true)
    end

    def run
      Builder::Parent::Genesis.new(@options).build
      success = Deploy.new(@options).sync # returns true if success
      abort("Bootstrap deploy failed") unless success
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jets-6.0.5 lib/jets/cfn/bootstrap.rb
jets-6.0.4 lib/jets/cfn/bootstrap.rb
jets-6.0.3 lib/jets/cfn/bootstrap.rb
jets-6.0.2 lib/jets/cfn/bootstrap.rb