class ChefApply::TargetHost::RemoteExecutionFailed

Attributes

stderr[R]
stdout[R]

Public Class Methods

new(host, command, result) click to toggle source
Calls superclass method ChefApply::ErrorNoLogs::new
# File lib/chef_apply/target_host.rb, line 298
def initialize(host, command, result)
  super("CHEFRMT001",
        command,
        result.exit_status,
        host,
        result.stderr.empty? ? result.stdout : result.stderr)
end