Class: OraUtils::OrapwdCommand

Inherits:
OraCommand show all
Defined in:
lib/orabase/utils/orapwd_command.rb

Constant Summary

Constants inherited from OraCommand

OraUtils::OraCommand::ASM_OS_USER_NAME, OraUtils::OraCommand::DEFAULT_TIMEOUT, OraUtils::OraCommand::ORA_OS_USER_NAME, OraUtils::OraCommand::VALID_OPTIONS

Instance Method Summary collapse

Methods inherited from OraCommand

#command_string

Constructor Details

#initialize(options = {}) ⇒ OrapwdCommand

Returns a new instance of OrapwdCommand.



6
7
8
# File 'lib/orabase/utils/orapwd_command.rb', line 6

def initialize(options = {})
  super(:orapwd, options)
end

Instance Method Details

#execute(arguments) ⇒ Object



10
11
12
13
14
15
16
17
18
19
# File 'lib/orabase/utils/orapwd_command.rb', line 10

def execute(arguments)
  options = {:failonfail => true}
  value = ''
  command = command_string(arguments)
  within_time(@timeout) do
    Puppet.debug "Executing #{@command} command: #{arguments} as #{os_user}"
    value = Puppet::Util::Execution.execute(command, options)
  end
  value
end