mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Import changeset
This commit is contained in:
16
support-files/binary-configure.sh
Executable file
16
support-files/binary-configure.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
if test ! -x ./scripts/mysql_install_db
|
||||
then
|
||||
echo "I didn't find the script './scripts/mysql_install_db'."
|
||||
echo "Please execute this script in the mysql distribution directory!"
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
./scripts/mysql_install_db
|
||||
if [ $? = 0 ]
|
||||
then
|
||||
echo "Starting the mysqld server. You can test that it is up and running"
|
||||
echo "with the command:"
|
||||
echo "./bin/mysqladmin version"
|
||||
./bin/safe_mysqld &
|
||||
fi
|
||||
Reference in New Issue
Block a user