| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.73 2007/04/15 13:00:51 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.85 2008/03/09 21:09:23 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
5 | # Author: Francesco Riosa (Retired) <vivo@gentoo.org> |
| 6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
6 | # Maintainer: Luca Longinotti <chtekk@gentoo.org> |
| 7 | |
7 | |
| 8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
8 | # Both MYSQL_VERSION_ID and MYSQL_PATCHSET_REV must be set in the ebuild too! |
| … | |
… | |
| 67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
67 | PDEPEND="perl? ( >=dev-perl/DBD-mysql-2.9004 )" |
| 68 | |
68 | |
| 69 | # BitKeeper dependency, compile-time only |
69 | # BitKeeper dependency, compile-time only |
| 70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
70 | [[ ${IS_BITKEEPER} -eq 90 ]] && DEPEND="${DEPEND} dev-util/bk_client" |
| 71 | |
71 | |
|
|
72 | # Work out the default SERVER_URI correctly |
|
|
73 | if [ -z "${SERVER_URI}" ]; then |
|
|
74 | # The community build is on the mirrors |
|
|
75 | if [ "${PN}" == "mysql-community" ]; then |
|
|
76 | SERVER_URI="mirror://mysql/Downloads/MySQL-${PV%.*}/mysql-${PV//_/-}.tar.gz" |
|
|
77 | # The enterprise source is on the primary site only |
|
|
78 | elif [ "${PN}" == "mysql" ]; then |
|
|
79 | SERVER_URI="ftp://ftp.mysql.com/pub/mysql/src/mysql-${PV//_/-}.tar.gz" |
|
|
80 | fi |
|
|
81 | fi |
|
|
82 | |
| 72 | # Define correct SRC_URIs |
83 | # Define correct SRC_URIs |
| 73 | SRC_URI="${SERVER_URI} |
84 | SRC_URI="${SERVER_URI} |
| 74 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
85 | mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2 |
| 75 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
86 | http://g3nt8.org/patches/mysql-extras-${MY_EXTRAS_VER}.tar.bz2" |
| 76 | mysql_version_is_at_least "5.1.12" \ |
87 | mysql_version_is_at_least "5.1.12" \ |
| … | |
… | |
| 80 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
91 | DESCRIPTION="A fast, multi-threaded, multi-user SQL database server." |
| 81 | HOMEPAGE="http://www.mysql.com/" |
92 | HOMEPAGE="http://www.mysql.com/" |
| 82 | LICENSE="GPL-2" |
93 | LICENSE="GPL-2" |
| 83 | SLOT="0" |
94 | SLOT="0" |
| 84 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
95 | IUSE="big-tables debug embedded minimal perl selinux ssl static" |
| 85 | RESTRICT="confcache" |
|
|
| 86 | |
96 | |
| 87 | mysql_version_is_at_least "4.1" \ |
97 | mysql_version_is_at_least "4.1" \ |
| 88 | && IUSE="${IUSE} latin1" |
98 | && IUSE="${IUSE} latin1" |
| 89 | |
99 | |
| 90 | mysql_version_is_at_least "4.1.3" \ |
100 | mysql_version_is_at_least "4.1.3" \ |
| … | |
… | |
| 198 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
208 | MY_LIBDIR=${MY_LIBDIR="/usr/$(get_libdir)/mysql"} |
| 199 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
209 | MY_LOCALSTATEDIR=${MY_LOCALSTATEDIR="/var/lib/mysql"} |
| 200 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
210 | MY_LOGDIR=${MY_LOGDIR="/var/log/mysql"} |
| 201 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
211 | MY_INCLUDEDIR=${MY_INCLUDEDIR="/usr/include/mysql"} |
| 202 | |
212 | |
| 203 | if [[ -z "${DATADIR}" ]] ; then |
213 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 204 | DATADIR="" |
214 | MY_DATADIR="" |
| 205 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
215 | if [[ -f "${MY_SYSCONFDIR}/my.cnf" ]] ; then |
| 206 | DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
216 | MY_DATADIR=`"my_print_defaults" mysqld 2>/dev/null \ |
| 207 | | sed -ne '/datadir/s|^--datadir=||p' \ |
217 | | sed -ne '/datadir/s|^--datadir=||p' \ |
| 208 | | tail -n1` |
218 | | tail -n1` |
| 209 | if [[ -z "${DATADIR}" ]] ; then |
219 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 210 | DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
220 | MY_DATADIR=`grep ^datadir "${MY_SYSCONFDIR}/my.cnf" \ |
| 211 | | sed -e 's/.*=\s*//'` |
221 | | sed -e 's/.*=\s*//'` |
| 212 | fi |
222 | fi |
| 213 | fi |
223 | fi |
| 214 | if [[ -z "${DATADIR}" ]] ; then |
224 | if [[ -z "${MY_DATADIR}" ]] ; then |
| 215 | DATADIR="${MY_LOCALSTATEDIR}" |
225 | MY_DATADIR="${MY_LOCALSTATEDIR}" |
| 216 | einfo "Using default DATADIR" |
226 | einfo "Using default MY_DATADIR" |
| 217 | fi |
227 | fi |
| 218 | elog "MySQL DATADIR is ${DATADIR}" |
228 | elog "MySQL MY_DATADIR is ${MY_DATADIR}" |
| 219 | |
229 | |
| 220 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
230 | if [[ -z "${PREVIOUS_DATADIR}" ]] ; then |
| 221 | if [[ -e "${DATADIR}" ]] ; then |
231 | if [[ -e "${MY_DATADIR}" ]] ; then |
| 222 | elog "Previous datadir found, it's YOUR job to change" |
232 | elog "Previous datadir found, it's YOUR job to change" |
| 223 | elog "ownership and take care of it" |
233 | elog "ownership and take care of it" |
| 224 | PREVIOUS_DATADIR="yes" |
234 | PREVIOUS_DATADIR="yes" |
| 225 | else |
235 | else |
| 226 | PREVIOUS_DATADIR="no" |
236 | PREVIOUS_DATADIR="no" |
| … | |
… | |
| 232 | MY_SOURCEDIR=${SERVER_URI##*/} |
242 | MY_SOURCEDIR=${SERVER_URI##*/} |
| 233 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
243 | MY_SOURCEDIR=${MY_SOURCEDIR%.tar*} |
| 234 | |
244 | |
| 235 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
245 | export MY_SHAREDSTATEDIR MY_SYSCONFDIR |
| 236 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
246 | export MY_LIBDIR MY_LOCALSTATEDIR MY_LOGDIR |
| 237 | export MY_INCLUDEDIR DATADIR MY_SOURCEDIR |
247 | export MY_INCLUDEDIR MY_DATADIR MY_SOURCEDIR |
| 238 | } |
248 | } |
| 239 | |
249 | |
| 240 | configure_minimal() { |
250 | configure_minimal() { |
| 241 | # These are things we exclude from a minimal build, please |
251 | # These are things we exclude from a minimal build, please |
| 242 | # note that the server actually does get built and installed, |
252 | # note that the server actually does get built and installed, |
| 243 | # but we then delete it before packaging. |
253 | # but we then delete it before packaging. |
| 244 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication" |
254 | local minimal_exclude_list="server embedded-server extra-tools innodb bench berkeley-db row-based-replication readline" |
| 245 | |
255 | |
| 246 | for i in ${minimal_exclude_list} ; do |
256 | for i in ${minimal_exclude_list} ; do |
| 247 | myconf="${myconf} --without-${i}" |
257 | myconf="${myconf} --without-${i}" |
| 248 | done |
258 | done |
| 249 | myconf="${myconf} --with-extra-charsets=none" |
259 | myconf="${myconf} --with-extra-charsets=none" |
| 250 | myconf="${myconf} --enable-local-infile" |
260 | myconf="${myconf} --enable-local-infile" |
| 251 | |
261 | |
| 252 | if use static ; then |
262 | if use static ; then |
| 253 | myconf="${myconf} --with-client-ldflags=-all-static" |
263 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 254 | myconf="${myconf} --disable-shared" |
264 | myconf="${myconf} --disable-shared --with-pic" |
| 255 | else |
265 | else |
| 256 | myconf="${myconf} --enable-shared --enable-static" |
266 | myconf="${myconf} --enable-shared --enable-static" |
| 257 | fi |
267 | fi |
| 258 | |
268 | |
| 259 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
269 | if mysql_version_is_at_least "4.1" && ! use latin1 ; then |
| … | |
… | |
| 275 | myconf="${myconf} --without-libwrap" |
285 | myconf="${myconf} --without-libwrap" |
| 276 | |
286 | |
| 277 | if use static ; then |
287 | if use static ; then |
| 278 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
288 | myconf="${myconf} --with-mysqld-ldflags=-all-static" |
| 279 | myconf="${myconf} --with-client-ldflags=-all-static" |
289 | myconf="${myconf} --with-client-ldflags=-all-static" |
| 280 | myconf="${myconf} --disable-shared" |
290 | myconf="${myconf} --disable-shared --with-pic" |
| 281 | else |
291 | else |
| 282 | myconf="${myconf} --enable-shared --enable-static" |
292 | myconf="${myconf} --enable-shared --enable-static" |
| 283 | fi |
293 | fi |
| 284 | |
294 | |
| 285 | if use debug ; then |
295 | if use debug ; then |
| … | |
… | |
| 327 | myconf="${myconf} $(use_with ssl)" |
337 | myconf="${myconf} $(use_with ssl)" |
| 328 | else |
338 | else |
| 329 | myconf="${myconf} $(use_with ssl openssl)" |
339 | myconf="${myconf} $(use_with ssl openssl)" |
| 330 | fi |
340 | fi |
| 331 | |
341 | |
|
|
342 | if use berkdb ; then |
| 332 | # The following fix is due to a bug with bdb on SPARC's. See: |
343 | # The following fix is due to a bug with bdb on SPARC's. See: |
| 333 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
344 | # http://www.geocrawler.com/mail/msg.php3?msg_id=4754814&list=8 |
| 334 | # It comes down to non-64-bit safety problems. |
345 | # It comes down to non-64-bit safety problems. |
| 335 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
346 | if use alpha || use amd64 || use hppa || use mips || use sparc ; then |
| 336 | elog "Berkeley DB support was disabled due to incompatible arch" |
347 | elog "Berkeley DB support was disabled due to compatibility issues on this arch" |
|
|
348 | myconf="${myconf} --without-berkeley-db" |
|
|
349 | else |
|
|
350 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
351 | fi |
|
|
352 | else |
| 337 | myconf="${myconf} --without-berkeley-db" |
353 | myconf="${myconf} --without-berkeley-db" |
| 338 | else |
|
|
| 339 | if use berkdb ; then |
|
|
| 340 | myconf="${myconf} --with-berkeley-db=./bdb" |
|
|
| 341 | else |
|
|
| 342 | myconf="${myconf} --without-berkeley-db" |
|
|
| 343 | fi |
|
|
| 344 | fi |
354 | fi |
| 345 | |
355 | |
| 346 | if mysql_version_is_at_least "4.1.3" ; then |
356 | if mysql_version_is_at_least "4.1.3" ; then |
| 347 | myconf="${myconf} --with-geometry" |
357 | myconf="${myconf} --with-geometry" |
| 348 | myconf="${myconf} $(use_with cluster ndbcluster)" |
358 | myconf="${myconf} $(use_with cluster ndbcluster)" |
| … | |
… | |
| 441 | } |
451 | } |
| 442 | |
452 | |
| 443 | # |
453 | # |
| 444 | # EBUILD FUNCTIONS |
454 | # EBUILD FUNCTIONS |
| 445 | # |
455 | # |
| 446 | |
|
|
| 447 | mysql_pkg_setup() { |
456 | mysql_pkg_setup() { |
| 448 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
457 | if hasq test ${FEATURES} ; then |
| 449 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
458 | if ! use minimal ; then |
|
|
459 | if ! hasq userpriv ${FEATURES} ; then |
|
|
460 | die "Testing with FEATURES=-userpriv is no longer supported by upstream" |
|
|
461 | fi |
|
|
462 | fi |
|
|
463 | fi |
| 450 | |
464 | |
| 451 | # Check for USE flag problems in pkg_setup |
465 | # Check for USE flag problems in pkg_setup |
| 452 | if use static && use ssl ; then |
466 | if use static && use ssl ; then |
| 453 | eerror "MySQL does not support being built statically with SSL support enabled!" |
467 | eerror "MySQL does not support being built statically with SSL support enabled!" |
| 454 | die "MySQL does not support being built statically with SSL support enabled!" |
468 | die "MySQL does not support being built statically with SSL support enabled!" |
| … | |
… | |
| 466 | && ( use cluster || use extraengine ) \ |
480 | && ( use cluster || use extraengine ) \ |
| 467 | && use minimal ; then |
481 | && use minimal ; then |
| 468 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
482 | eerror "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 469 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
483 | die "USE flags 'cluster' and 'extraengine' conflict with 'minimal' USE flag!" |
| 470 | fi |
484 | fi |
|
|
485 | |
|
|
486 | # This should come after all of the die statements |
|
|
487 | enewgroup mysql 60 || die "problem adding 'mysql' group" |
|
|
488 | enewuser mysql 60 -1 /dev/null mysql || die "problem adding 'mysql' user" |
| 471 | |
489 | |
| 472 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
490 | mysql_check_version_range "4.0 to 5.0.99.99" \ |
| 473 | && use berkdb \ |
491 | && use berkdb \ |
| 474 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
492 | && elog "Berkeley DB support is deprecated and will be removed in future versions!" |
| 475 | } |
493 | } |
| … | |
… | |
| 522 | |
540 | |
| 523 | local rebuilddirlist d |
541 | local rebuilddirlist d |
| 524 | |
542 | |
| 525 | if mysql_version_is_at_least "5.1.12" ; then |
543 | if mysql_version_is_at_least "5.1.12" ; then |
| 526 | rebuilddirlist="." |
544 | rebuilddirlist="." |
| 527 | # TODO: check this with a cmake expert |
545 | # TODO: check this with a cmake expert |
| 528 | use innodb \ |
546 | use innodb \ |
| 529 | && cmake \ |
547 | && cmake \ |
| 530 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
548 | -DCMAKE_C_COMPILER=$(type -P $(tc-getCC)) \ |
| 531 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCC)) \ |
549 | -DCMAKE_CXX_COMPILER=$(type -P $(tc-getCXX)) \ |
| 532 | "storage/innobase" |
550 | "storage/innobase" |
| 533 | else |
551 | else |
| 534 | rebuilddirlist=". innobase" |
552 | rebuilddirlist=". innobase" |
| 535 | fi |
553 | fi |
| 536 | |
554 | |
| … | |
… | |
| 645 | else |
663 | else |
| 646 | mysql_mycnf_version="4.0" |
664 | mysql_mycnf_version="4.0" |
| 647 | fi |
665 | fi |
| 648 | insinto "${MY_SYSCONFDIR}" |
666 | insinto "${MY_SYSCONFDIR}" |
| 649 | doins scripts/mysqlaccess.conf |
667 | doins scripts/mysqlaccess.conf |
| 650 | sed -e "s!@DATADIR@!${DATADIR}!g" \ |
668 | sed -e "s!@DATADIR@!${MY_DATADIR}!g" \ |
| 651 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
669 | "${FILESDIR}/my.cnf-${mysql_mycnf_version}" \ |
| 652 | > "${TMPDIR}/my.cnf.ok" |
670 | > "${TMPDIR}/my.cnf.ok" |
| 653 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
671 | if mysql_version_is_at_least "4.1" && use latin1 ; then |
| 654 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
672 | sed -e "s|utf8|latin1|g" -i "${TMPDIR}/my.cnf.ok" |
| 655 | fi |
673 | fi |
| … | |
… | |
| 658 | # Minimal builds don't have the MySQL server |
676 | # Minimal builds don't have the MySQL server |
| 659 | if ! use minimal ; then |
677 | if ! use minimal ; then |
| 660 | # Empty directories ... |
678 | # Empty directories ... |
| 661 | diropts "-m0750" |
679 | diropts "-m0750" |
| 662 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
680 | if [[ "${PREVIOUS_DATADIR}" != "yes" ]] ; then |
| 663 | dodir "${DATADIR}" |
681 | dodir "${MY_DATADIR}" |
| 664 | keepdir "${DATADIR}" |
682 | keepdir "${MY_DATADIR}" |
| 665 | chown -R mysql:mysql "${D}/${DATADIR}" |
683 | chown -R mysql:mysql "${D}/${MY_DATADIR}" |
| 666 | fi |
684 | fi |
| 667 | |
685 | |
| 668 | diropts "-m0755" |
686 | diropts "-m0755" |
| 669 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
687 | for folder in "${MY_LOGDIR}" "/var/run/mysqld" ; do |
| 670 | dodir "${folder}" |
688 | dodir "${folder}" |
| … | |
… | |
| 673 | done |
691 | done |
| 674 | fi |
692 | fi |
| 675 | |
693 | |
| 676 | # Docs |
694 | # Docs |
| 677 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
695 | dodoc README COPYING ChangeLog EXCEPTIONS-CLIENT INSTALL-SOURCE |
|
|
696 | doinfo ${S}/Docs/mysql.info |
| 678 | |
697 | |
| 679 | # Minimal builds don't have the MySQL server |
698 | # Minimal builds don't have the MySQL server |
| 680 | if ! use minimal ; then |
699 | if ! use minimal ; then |
| 681 | docinto "support-files" |
700 | docinto "support-files" |
| 682 | for script in \ |
701 | for script in \ |
| … | |
… | |
| 689 | |
708 | |
| 690 | docinto "scripts" |
709 | docinto "scripts" |
| 691 | for script in scripts/mysql* ; do |
710 | for script in scripts/mysql* ; do |
| 692 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
711 | [[ "${script%.sh}" == "${script}" ]] && dodoc "${script}" |
| 693 | done |
712 | done |
|
|
713 | |
| 694 | fi |
714 | fi |
| 695 | |
715 | |
| 696 | mysql_lib_symlinks "${D}" |
716 | mysql_lib_symlinks "${D}" |
| 697 | } |
717 | } |
| 698 | |
718 | |
| … | |
… | |
| 758 | |
778 | |
| 759 | mysql_pkg_config() { |
779 | mysql_pkg_config() { |
| 760 | # Make sure the vars are correctly initialized |
780 | # Make sure the vars are correctly initialized |
| 761 | mysql_init_vars |
781 | mysql_init_vars |
| 762 | |
782 | |
| 763 | [[ -z "${DATADIR}" ]] && die "Sorry, unable to find DATADIR" |
783 | [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" |
| 764 | |
784 | |
| 765 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
785 | if built_with_use ${CATEGORY}/${PN} minimal ; then |
| 766 | die "Minimal builds do NOT include the MySQL server" |
786 | die "Minimal builds do NOT include the MySQL server" |
| 767 | fi |
787 | fi |
| 768 | |
788 | |
| 769 | local pwd1="a" |
789 | local pwd1="a" |
| 770 | local pwd2="b" |
790 | local pwd2="b" |
| 771 | local maxtry=5 |
791 | local maxtry=5 |
| 772 | |
792 | |
| 773 | if [[ -d "${ROOT}/${DATADIR}/mysql" ]] ; then |
793 | if [[ -d "${ROOT}/${MY_DATADIR}/mysql" ]] ; then |
| 774 | ewarn "You have already a MySQL database in place." |
794 | ewarn "You have already a MySQL database in place." |
| 775 | ewarn "(${ROOT}/${DATADIR}/*)" |
795 | ewarn "(${ROOT}/${MY_DATADIR}/*)" |
| 776 | ewarn "Please rename or delete it if you wish to replace it." |
796 | ewarn "Please rename or delete it if you wish to replace it." |
| 777 | die "MySQL database already exists!" |
797 | die "MySQL database already exists!" |
| 778 | fi |
798 | fi |
| 779 | |
799 | |
| 780 | einfo "Creating the mysql database and setting proper" |
800 | einfo "Creating the mysql database and setting proper" |
| … | |
… | |
| 799 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
819 | && cp "${help_tables}" "${TMPDIR}/fill_help_tables.sql" \ |
| 800 | || touch "${TMPDIR}/fill_help_tables.sql" |
820 | || touch "${TMPDIR}/fill_help_tables.sql" |
| 801 | help_tables="${TMPDIR}/fill_help_tables.sql" |
821 | help_tables="${TMPDIR}/fill_help_tables.sql" |
| 802 | |
822 | |
| 803 | pushd "${TMPDIR}" &>/dev/null |
823 | pushd "${TMPDIR}" &>/dev/null |
| 804 | "${ROOT}/usr/bin/mysql_install_db" | grep -B5 -A999 -i "ERROR" |
824 | "${ROOT}/usr/bin/mysql_install_db" >"${TMPDIR}"/mysql_install_db.log 2>&1 |
|
|
825 | if [ $? -ne 0 ]; then |
|
|
826 | grep -B5 -A999 -i "ERROR" "${TMPDIR}"/mysql_install_db.log 1>&2 |
|
|
827 | die "Failed to run mysql_install_db. Please review /var/log/mysql/mysqld.err AND ${TMPDIR}/mysql_install_db.log" |
|
|
828 | fi |
| 805 | popd &>/dev/null |
829 | popd &>/dev/null |
| 806 | [[ -f "${ROOT}/${DATADIR}/mysql/user.frm" ]] \ |
830 | [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ |
| 807 | || die "MySQL databases not installed" |
831 | || die "MySQL databases not installed" |
| 808 | chown -R mysql:mysql "${ROOT}/${DATADIR}" 2> /dev/null |
832 | chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 809 | chmod 0750 "${ROOT}/${DATADIR}" 2> /dev/null |
833 | chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null |
| 810 | |
834 | |
| 811 | if mysql_version_is_at_least "4.1.3" ; then |
835 | if mysql_version_is_at_least "4.1.3" ; then |
| 812 | options="--skip-ndbcluster" |
836 | options="--skip-ndbcluster" |
| 813 | |
837 | |
| 814 | # Filling timezones, see |
838 | # Filling timezones, see |
| … | |
… | |
| 825 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
849 | local mysqld="${ROOT}/usr/sbin/mysqld \ |
| 826 | ${options} \ |
850 | ${options} \ |
| 827 | --user=mysql \ |
851 | --user=mysql \ |
| 828 | --skip-grant-tables \ |
852 | --skip-grant-tables \ |
| 829 | --basedir=${ROOT}/usr \ |
853 | --basedir=${ROOT}/usr \ |
| 830 | --datadir=${ROOT}/${DATADIR} \ |
854 | --datadir=${ROOT}/${MY_DATADIR} \ |
| 831 | --skip-innodb \ |
855 | --skip-innodb \ |
| 832 | --skip-bdb \ |
856 | --skip-bdb \ |
| 833 | --skip-networking \ |
857 | --skip-networking \ |
| 834 | --max_allowed_packet=8M \ |
858 | --max_allowed_packet=8M \ |
| 835 | --net_buffer_length=16K \ |
859 | --net_buffer_length=16K \ |