Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ def initialize(config)
end

def create
if ENV["ORACLE_SYSTEM_USER"]
system_user = ENV["ORACLE_SYSTEM_USER"]
else
system_user = "SYSTEM"
$stdout.puts "Using system user '#{system_user}' (set ORACLE_SYSTEM_USER to override)"
end

system_password = ENV.fetch("ORACLE_SYSTEM_PASSWORD") {
print "Please provide the SYSTEM password for your Oracle installation (set ORACLE_SYSTEM_PASSWORD to avoid this prompt)\n>"
$stdin.gets.strip
Expand Down