mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
2cbf3b9b53
Update to new debian files configure.in: Updated version number sql-bench/Results/ATIS-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/RUN-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/alter-table-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/big-tables-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/connect-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/create-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/insert-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/select-mysql-Linux_2.2.16_SMP_alpha: New benchmark results sql-bench/Results/wisconsin-mysql-Linux_2.2.16_SMP_alpha: New benchmark results support-files/debian/README.debian: Update to new debian files support-files/debian/changelog: Update to new debian files support-files/debian/control: Update to new debian files support-files/debian/gomi: Update to new debian files support-files/debian/move: Update to new debian files support-files/debian/patches/ab: Update to new debian files support-files/debian/patches/ad: Update to new debian files support-files/debian/patches/ae: Update to new debian files support-files/debian/rules: Update to new debian files support-files/debian/shlibs: Update to new debian files
68 lines
1.3 KiB
Text
68 lines
1.3 KiB
Text
--- mysql-3.23.34a/mysql-test/install_test_db.sh.orig Mon Mar 12 08:18:24 2001
|
|
+++ mysql-3.23.34a/mysql-test/install_test_db.sh Thu Mar 15 04:11:14 2001
|
|
@@ -5,6 +5,15 @@
|
|
# This scripts creates the privilege tables db, host, user, tables_priv,
|
|
# columns_priv in the mysql database, as well as the func table.
|
|
|
|
+if [ x$1 = x"-debian" ]; then
|
|
+ DEBIAN=1
|
|
+ shift 1
|
|
+ execdir=/usr/sbin
|
|
+ bindir=/usr/bin
|
|
+ BINARY_DIST=1
|
|
+ fix_bin=/var/mysql/mysql-test
|
|
+else
|
|
+
|
|
if [ x$1 = x"-bin" ]; then
|
|
shift 1
|
|
execdir=../bin
|
|
@@ -17,6 +26,10 @@
|
|
fix_bin=.
|
|
fi
|
|
|
|
+fi
|
|
+
|
|
+
|
|
+
|
|
vardir=var
|
|
logdir=$vardir/log
|
|
if [ x$1 = x"-slave" ]
|
|
@@ -47,12 +60,17 @@
|
|
#create the directories
|
|
[ -d $vardir ] || mkdir $vardir
|
|
[ -d $logdir ] || mkdir $logdir
|
|
+[ "x$RUN_USER" != "x" ] && chown -R $RUN_USER $logdir
|
|
|
|
# Create database directories mysql & test
|
|
if [ -d $data ] ; then rm -rf $data ; fi
|
|
mkdir $data $data/mysql $data/test
|
|
|
|
#for error messages
|
|
+if [ "x$DEBIAN" = "x1" ]; then
|
|
+ basedir=/usr
|
|
+else
|
|
+
|
|
if [ x$BINARY_DIST = x1 ] ; then
|
|
basedir=..
|
|
else
|
|
@@ -62,6 +80,10 @@
|
|
ln -sf ../../sql/share share/mysql
|
|
fi
|
|
|
|
+fi
|
|
+
|
|
+
|
|
+
|
|
# Initialize variables
|
|
c_d="" i_d=""
|
|
c_h="" i_h=""
|
|
@@ -211,7 +233,9 @@
|
|
$c_c
|
|
END_OF_DATA
|
|
then
|
|
+ [ "x$RUN_USER" != "x" ] && chown -R $RUN_USER $ldata
|
|
exit 0
|
|
else
|
|
+ [ "x$RUN_USER" != "x" ] && chown -R $RUN_USER $ldata
|
|
exit 1
|
|
fi
|