Class: OraUtils::OrapwdCommand
- Inherits:
-
OraCommand
- Object
- OraCommand
- OraUtils::OrapwdCommand
- 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
- #execute(arguments) ⇒ Object
-
#initialize(options = {}) ⇒ OrapwdCommand
constructor
A new instance of OrapwdCommand.
Methods inherited from OraCommand
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( = {}) super(:orapwd, ) 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) = {: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, ) end value end |