AaronNGray
12th March 2006, 19:15
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
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