mirror of
https://github.com/tnb-labs/panel.git
synced 2026-09-21 05:11:14 +08:00
14 lines
426 B
Go
14 lines
426 B
Go
package mysql57
|
|
|
|
var (
|
|
Name = "MySQL-5.7"
|
|
Description = "MySQL 是最流行的关系型数据库管理系统之一,Oracle 旗下产品。"
|
|
Slug = "mysql57"
|
|
Version = "5.7.42"
|
|
Requires = []string{}
|
|
Excludes = []string{"mysql80"}
|
|
Install = `bash /www/panel/scripts/mysql/install.sh 57`
|
|
Uninstall = `bash /www/panel/scripts/mysql/uninstall.sh 57`
|
|
Update = `echo "not support now"`
|
|
)
|