8 lines
196 B
Bash
8 lines
196 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find /var/lib/mysql -type f -exec touch {} \; && service mysql start
|
||
|
|
||
|
# Disable SQL strict mode
|
||
|
mysql -u root -proot -e "SET GLOBAL sql_mode='NO_ENGINE_SUBSTITUTION';"
|
||
|
|
||
|
sleep infinity
|