Larry lafter wrote:
you need to find the the file called : InstallationCheck, open it and find the string close to this :
osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)Mac OS X \(.*\) \(.*\)/\2/g'`
and modify like that :
osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X \(.*\) \(.*\)/\2/g'`
Larry & Phillamu,
I was having the same problem, but was able to get 9.0.1 to install under OS X 10.10 (Yosemite) after modifying InstallationCheck. I started with Larry's suggestion, but had to change a few more things to get it to install.
As it turns out, version 10.10 is evaluated as being "older" than 10.8 & 10.5 when the bash script is ran. Think about it, when it comes to a mathematical comparison, 10.10 is a smaller number than 10.5.
To get around this, and preserve the spirit of the script, the change I made was to limit the comparison to the incremental version number.
I also had to change the syntax of the comparison.
In the file InstallationCheck, replace this:
osvLion=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X \(.*\) \(.*\)/\2/g'`
if [ "$osvLion" \< "10.8" ]
then
osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)Mac OS X \(.*\) \(.*\)/\2/g'`
if [ "$osv" = "" -o "$osv" \< "10.5" ]
with this(the changes are highlighted in bold to help identify them):
osvLion=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X 10.\(.*\) \(.*\)/\2/g'`
if [ "$osvLion" -lt "8" ]
then
osv=`/usr/sbin/system_profiler SPSoftwareDataType | grep "System Version" | sed -e 's/\(.*\)OS X 10.\(.*\) \(.*\)/\2/g'`
if [ "$osv" = "" -o "$osv" -lt "5" ]
A few more notes.
InstallationCheck is located in the Resources folder inside "IBM Notes Installer.pkg", which is located in the Packages folder inside "IBM Notes Installer.mpkg".
Use Finder's "Show Package Contents" feature to look inside the .mpkg & .pkg files.
Use Finder's "Duplicate" feature to save a copy of InstallationCheck before editing the script. (Don't back yourself into a corner. You might need to start over.)
Now I just need to get Notes to actually run!
Good luck!!!