Class: R10K::Action::Puppetfile::Install

Inherits:
Base
  • Object
show all
Includes:
Visitor
Defined in:
lib/r10k/action/puppetfile/install.rb

Constant Summary

Constants included from Logging

Logging::LOG_LEVELS

Instance Attribute Summary

Attributes inherited from Base

#settings

Instance Method Summary collapse

Methods included from Visitor

#visit

Methods inherited from Base

#initialize

Methods included from Logging

debug_formatter, default_formatter, default_outputter, #logger, #logger_name, parse_level

Constructor Details

This class inherits a constructor from R10K::Action::Base

Instance Method Details

#callObject



11
12
13
14
15
16
# File 'lib/r10k/action/puppetfile/install.rb', line 11

def call
  @visit_ok = true
  pf = R10K::Puppetfile.new(@root, @moduledir, @puppetfile, nil , @force)
  pf.accept(self)
  @visit_ok
end