Class: Beaker::PuppetCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/beaker/command.rb

Instance Attribute Summary

Attributes inherited from Command

#args, #command, #environment, #options

Instance Method Summary collapse

Methods inherited from Command

#args_string, #cmd_line, #options_string

Constructor Details

#initialize(*args) ⇒ PuppetCommand

Returns a new instance of PuppetCommand.



134
135
136
137
138
139
140
# File 'lib/beaker/command.rb', line 134

def initialize *args
  command = "puppet #{args.shift}"
  opts = args.last.is_a?(Hash) ? args.pop : Hash.new
  opts['ENV'] ||= Hash.new
  opts[:cmdexe] = true
  super( command, args, opts )
end