You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To avoid using the 'bc' binary, which might not be installed (and isn't by default) on a RHEL system, it would be better to use shell builtin features for arithmetic comparison and string manipulation:
Replace
if [ $(bc<<<"$VERSION_ID < 9") = 1 ]
by
if [ ${VERSION_ID%.*} -lt 9 ]
in the install script. (And similar for similar occurences in the script.)