From 6b8d2622b4a0fa5be485262492d35bbd78c6737b Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Mon, 29 Jul 2024 11:52:15 +0800 Subject: [PATCH] Update install.sh --- plugins/memcached/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/memcached/install.sh b/plugins/memcached/install.sh index 99cdacb69..ec5c8e65f 100755 --- a/plugins/memcached/install.sh +++ b/plugins/memcached/install.sh @@ -39,7 +39,7 @@ Install_mem(){ if [ -d $serverPath/memcached ];then echo '1.6' > $serverPath/memcached/version.pl - echo 'install ok' > $install_tmp + echo '安装memcached成功' cd ${rootPath} && python3 ${rootPath}/plugins/memcached/index.py start cd ${rootPath} && python3 ${rootPath}/plugins/memcached/index.py initd_install @@ -62,6 +62,7 @@ Uninstall_mem() $serverPath/memcached/initd/memcached stop fi rm -rf $serverPath/memcached + echo '卸载memcached成功' }