Class: Kafo::PuppetCommand

Inherits:
Object
  • Object
show all
Defined in:
lib/kafo/puppet_command.rb

Instance Method Summary collapse

Constructor Details

#initialize(command, options = [], configuration = KafoConfigure.config) ⇒ PuppetCommand

Returns a new instance of PuppetCommand.



4
5
6
7
8
9
10
11
12
13
# File 'lib/kafo/puppet_command.rb', line 4

def initialize(command, options = [], configuration = KafoConfigure.config)
  @configuration = configuration
  @command = command

  # Expand the modules_path to work around the fact that Puppet doesn't
  # allow modulepath to contain relative (i.e ..) directory references as
  # of 2.7.23.
  @options = options.push("--modulepath #{File.expand_path(modules_path)}")
  @logger  = KafoConfigure.logger
end

Instance Method Details

#add_progressObject



19
20
21
# File 'lib/kafo/puppet_command.rb', line 19

def add_progress
  KafoConfigure.verbose ? '' : "$kafo_add_progress=true"
end

#append(suffix) ⇒ Object



34
35
36
37
# File 'lib/kafo/puppet_command.rb', line 34

def append(suffix)
  @suffix = suffix
  self
end

#commandObject



23
24
25
26
27
28
29
30
31
32
# File 'lib/kafo/puppet_command.rb', line 23

def command
  result = [
      "echo '$kafo_config_file=\"#{@configuration.config_file}\" #{custom_answer_file} #{add_progress} #{@command}'",
      '|',
      "RUBYLIB=#{["#{@configuration.gem_root}/modules", ::ENV['RUBYLIB']].join(File::PATH_SEPARATOR)}",
      "puppet apply #{@options.join(' ')} #{@suffix}",
  ].join(' ')
  @logger.debug result
  result
end

#custom_answer_fileObject



15
16
17
# File 'lib/kafo/puppet_command.rb', line 15

def custom_answer_file
  KafoConfigure.temp_config_file.nil? ? '' : "$kafo_answer_file=\"#{KafoConfigure.temp_config_file}\""
end