We print the above message if the following fails:
ssh
[email protected]$2 [ -f /etc/oracle-release ] && OS_DIST='ORACLE'
if [[ -z $OS_DIST ]];then
ssh
[email protected]$2 [ -f /etc/redhat-release ] && OS_DIST='RHEL'
fi
if [[ -z $OS_DIST ]];then
ssh
[email protected]$2 [ -f /etc/SuSE-release ] && OS_DIST='SUSE'
fi
if [[ -z $OS_DIST ]];then
printFAIL "Not a Linux release this script can run on. Please see documentation for supported releases."
printScriptDone $0
exit 0
The install ssh's to localhost as root, and check if the /etc/*release file exists, to determine what version of linux we are on
... so ssh to localhost as root must be failing.
Resolve any security related issues that might be blocking passwordless ssh as root, and make sure you run the dr_validate script (see documentation) before running the install as it will attempt to set passwordless ssh for you
The upgrade should now work