mysql: Make S97mysqld source a default file
Hardcoded parameters are used for mysql user/directory. Make S97mysqld source a /etc/default/mysql file where these parameters can be overridden. Signed-off-by: Eloi BAIL <eloi.bail@savoirfairelinux.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
d61b8de0b0
commit
e278c52012
@ -1,10 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
MYSQL_DIR="/var/mysql"
|
||||
MYSQL_USER="mysql"
|
||||
|
||||
[ -r /etc/default/mysql ] && . /etc/default/mysql
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
if [ ! -d /var/mysql/mysql ] ; then
|
||||
if [ ! -d $MYSQL_DIR/mysql ] ; then
|
||||
echo "Creating MySQL system tables..."
|
||||
mysql_install_db --user=mysql --ldata=/var/mysql
|
||||
mysql_install_db --user=$MYSQL_USER --ldata=$MYSQL_DIR
|
||||
fi
|
||||
|
||||
# mysqld runs as user mysql, but /run is only writable by root
|
||||
|
Loading…
Reference in New Issue
Block a user