Index: hcat_server_install.sh =================================================================== --- hcat_server_install.sh (revision 1170301) +++ hcat_server_install.sh (working copy) @@ -96,14 +96,6 @@ exit 1 fi -# Check that the required Mysql driver is in the dbroot -mysql_jar=`ls ${dbroot}/mysql-connector-java-*.jar 2>/dev/null | grep mysql-connector-java` -if [ "${mysql_jar}x" == "x" ] ; then - echo "The required jar file mysql-connector-java-version.jar is not in " \ - "$dbroot or is not readable" - exit 1 -fi - # Create the needed directories in root for dir in var conf var/log bin lib ; do if [ ! -d $root/$dir ] ; then Index: hcat_server_start.sh =================================================================== --- hcat_server_start.sh (revision 1170301) +++ hcat_server_start.sh (working copy) @@ -55,8 +55,8 @@ exit 1 fi -# add mysqldb jars -for f in ${DBROOT}/mysql-connector-java-*-bin.jar; do +# add extra jars (jdbc driver etc.) +for f in ${DBROOT}/*.jar; do AUX_CLASSPATH=${AUX_CLASSPATH}:$f done