coi-gov-pl/puppet-jboss

View on GitHub
lib/puppet_x/coi/jboss/internal/executor/shell_executor.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'English'

# Class that handles shell command execution
class PuppetX::Coi::Jboss::Internal::Executor::ShellExecutor
  # Method that executes method by real system command execution
  # @param {String} cmd command that will be executed
  def run_command(cmd)
    `#{cmd}`
  end

  #  Method to check return code from last command that was executed
  # @return {Process::Status} result of last command
  def child_status
    $CHILD_STATUS
  end
end