Class: OraUtils::OraCommand
- Inherits:
-
Object
- Object
- OraUtils::OraCommand
- Defined in:
- lib/orabase/utils/ora_command.rb
Direct Known Subclasses
Constant Summary collapse
- DEFAULT_TIMEOUT =
5 minutes
300
- ORA_OS_USER_NAME =
'ORA_OS_USER'
- ASM_OS_USER_NAME =
'ASM_OS_USER'
- VALID_OPTIONS =
[ :sid, :os_user, :password, :timeout, :username, ]
Instance Method Summary collapse
- #command_string(arguments = '') ⇒ Object
- #execute(arguments) ⇒ Object
-
#initialize(command, options, valid_options = VALID_OPTIONS) ⇒ OraCommand
constructor
A new instance of OraCommand.
Constructor Details
#initialize(command, options, valid_options = VALID_OPTIONS) ⇒ OraCommand
Returns a new instance of OraCommand.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/orabase/utils/ora_command.rb', line 18 def initialize(command, , = VALID_OPTIONS) @valid_options = ( ) @command = command @oratab = OraUtils::OraTab.new @password = [:password] # may be empty @timeout = .fetch(:timeout) { DEFAULT_TIMEOUT} @sid = .fetch(:sid) { raise ArgumentError, "you need to specify a sid for oracle access"} if asm_sid? @os_user = .fetch(:os_user) {default_asm_user} @username = .fetch(:username){'sysasm'} else @os_user = .fetch(:os_user) {default_ora_user} @username = .fetch(:username){'sysdba'} end end |
Instance Method Details
#command_string(arguments = '') ⇒ Object
35 36 37 |
# File 'lib/orabase/utils/ora_command.rb', line 35 def command_string(arguments = '') "su - #{@os_user} -c \"export ORACLE_SID=#{@sid};export ORAENV_ASK=NO;. oraenv; #{@command} #{arguments}\"" end |
#execute(arguments) ⇒ Object
39 40 41 42 43 44 45 46 47 |
# File 'lib/orabase/utils/ora_command.rb', line 39 def execute(arguments) = {:failonfail => true} value = '' within_time(@timeout) do Puppet.debug "Executing #{@command} command: #{arguments} on #{@sid} as #{os_user}, connected as #{username}" value = Puppet::Util::Execution.execute(command_string(arguments), ) end value end |