Fix MySQL autostart issue on Ubuntu 14.04

This commit is contained in:
Serghey Rodin 2014-07-06 14:55:29 +03:00
commit 62c05fb08f
3 changed files with 19 additions and 1 deletions

View file

@ -15,4 +15,9 @@ if [ -x "/usr/local/vesta/upd/fix_vesta_ssl_permissions.sh" ]; then
/usr/local/vesta/upd/fix_vesta_ssl_permissions.sh
fi
# Run MySQL autostart fixed
if [ -x "/usr/local/vesta/upd/fix_mysql_startup.sh" ]; then
/usr/local/vesta/upd/fix_mysql_startup.sh
fi
exit 0