Sha256: 7914d48e0497d1e77a1f6201e413bafd6e3f2659263674004473477da5d40bc9
Contents?: true
Size: 704 Bytes
Versions: 26
Compression:
Stored size: 704 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 2.0.0. class CriRunner < R10K::Action::CriRunner def handle_opts(opts) opts[:root] ||= wd 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
26 entries across 26 versions & 1 rubygems