myvesta/upd/fix_mysql_startup.sh
2014-07-06 14:55:29 +03:00

12 lines
224 B
Bash
Executable File

#!/bin/bash
# Fix MySQL autostart for Ubuntu 14.04
if [ -e "/etc/issue" ]; then
release=$(head -n 1 /etc/issue | cut -f 2 -d ' ' )
if [ "$release" = '14.04' ]; then
update-rc.d mysql disable
fi
fi
exit