There is a bug in the bash file 'setup1' which effects RedHat instillations. setup1 line 160 is :- if [ -n '$version' ]; then but should be :- if [ ! -n '$version' ]; then The version string is being set incorrectly. This should correct this problem. Aaron