Sha256: cbf3bfbd72fdc9e154a2986fd84cb52a36da2bad2ca84bbfab516299fa3d3a0b
Contents?: true
Size: 1.29 KB
Versions: 9
Compression:
Stored size: 1.29 KB
Contents
require 'open3' module OpenStax::Aws class Packer_1_2_5 def initialize(absolute_file_path:, dry_run: true) @logger = OpenStax::Aws.configuration.logger @only = [] @vars = {} @dry_run = dry_run @verbose = false @debug = false @absolute_file_path = absolute_file_path end def only(builders) @only = [builders].flatten end def var(key, value) @vars[key.to_s] = value.to_s end def verbose! @verbose = true end def debug! @debug = true end def command cmd = "packer build --only=amazon-ebs" cmd = "#{cmd} --only=#{@only.join(',')}" if !@only.empty? @vars.each do |key, value| cmd = "#{cmd} --var '#{key}=#{value}'" end cmd = "PACKER_LOG=1 #{cmd}" if @verbose cmd = "#{cmd} --debug" if @debug cmd = "#{cmd} #{@absolute_file_path}" end def run @logger.info("**** DRY RUN ****") if @dry_run @logger.info("Running: #{command}") if !@dry_run @logger.info("Printing stderr for desired verbosity") Open3.popen2e(command) do |stdin, stdout_err, wait_thr| stdout_err.sync = true while char = stdout_err.getc do STDERR.print char end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems