diff --git a/plugins/mysql-ya/install.sh b/plugins/mysql-ya/install.sh index 2f25111c9..e89ba9aa0 100755 --- a/plugins/mysql-ya/install.sh +++ b/plugins/mysql-ya/install.sh @@ -14,6 +14,8 @@ install_tmp=${rootPath}/tmp/mw_install.pl action=$1 type=$2 + + if [ "${2}" == "" ];then echo '缺少安装脚本...' > $install_tmp exit 0 @@ -24,20 +26,11 @@ if [ ! -d $curPath/versions/$2 ];then exit 0 fi -if [ "${action}" == "uninstall" ];then - - if [ -f /lib/systemd/system/mysql.service ];then - systemctl stop mysql - systemctl disable mysql - rm -rf /lib/systemd/system/mysql.service - systemctl daemon-reload - fi -fi sh -x $curPath/versions/$2/install.sh $1 -if [ "${action}" == "install" ];then - #初始化 - cd ${rootPath} && python3 ${rootPath}/plugins/mysql/index.py start ${type} - cd ${rootPath} && python3 ${rootPath}/plugins/mysql/index.py initd_install ${type} -fi +# if [ "${action}" == "install" ];then +# #初始化 +# cd ${rootPath} && python3 ${rootPath}/plugins/mysql/index.py start ${type} +# cd ${rootPath} && python3 ${rootPath}/plugins/mysql/index.py initd_install ${type} +# fi