Update install.sh

pull/121/head
midoks 3 years ago
parent a58eb5f8d1
commit 3e1683d7eb
  1. 21
      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

Loading…
Cancel
Save