mirror of
https://github.com/serghey-rodin/vesta.git
synced 2024-11-21 04:50:09 -08:00
12 lines
224 B
Bash
Executable File
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
|