mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
Detection of MySQL 8 in v-list-sys-services
This commit is contained in:
parent
f0f28da12e
commit
d98f373226
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ if [ ! -z "$DB_SYSTEM" ] && [ "$DB_SYSTEM" != 'remote' ]; then
|
|||
if [ "$service" = 'mysql' ]; then
|
||||
proc_name='mysqld'
|
||||
release=$(cat /etc/debian_version | tr "." "\n" | head -n1)
|
||||
if [ "$release" -eq 11 ]; then
|
||||
if [ "$release" -eq 11 ] && [ ! -f "/etc/apt/sources.list.d/mysql.list" ]; then
|
||||
service='mariadb'
|
||||
proc_name='mariadbd'
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue