Sha256: cdeed1aa71cb546e3e655fbc61e3792b05ecf916390a878d68bca89c4ecc1b79

Contents?: true

Size: 917 Bytes

Versions: 10

Compression:

Stored size: 917 Bytes

Contents

require 'r10k/action/cri_runner'

module R10K
  module Action
    module Puppetfile
      # Extend the default Cri Runner to use the PUPPETFILE environment
      # variables.
      #
      # @api private
      # @deprecated The use of these environment variables is deprecated and
      #   will be removed in 3.0.0.
      class CriRunner < R10K::Action::CriRunner

        include R10K::Logging

        def handle_opts(opts)
          opts[:root]       ||= wd
          if env['PUPPETFILE_DIR'] || env['PUPPETFILE']
            logger.warn _("The use of the PUPPETFILE and PUPPETFILE_DIR environment variables is deprecated.")
          end
          opts[:moduledir]  ||= env['PUPPETFILE_DIR']
          opts[:puppetfile] ||= env['PUPPETFILE']
          super(opts)
        end

        private

        def env
          ENV
        end

        def wd
          Dir.getwd
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
r10k-2.6.9 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.8 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.7 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.6 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.5 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.4 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.3 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.2 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.1 lib/r10k/action/puppetfile/cri_runner.rb
r10k-2.6.0 lib/r10k/action/puppetfile/cri_runner.rb