feat: 清理提交
All checks were successful
Generate Checksums / checksums (push) Successful in 46s

This commit is contained in:
2026-01-31 07:03:45 +08:00
commit 758e1c8799
487 changed files with 8839 additions and 0 deletions

19
phpmyadmin/uninstall.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH
source <(curl -f -s --connect-timeout 10 --retry 3 https://dl.acepanel.net/public.sh)
if [ $? -ne 0 ]; then
echo "Download public.sh failed, please check the network or try again later."
exit 1
fi
phpmyadmin_path="${setup_path}/server/phpmyadmin"
rm -rf ${setup_path}/sites/phpmyadmin
rm -rf ${phpmyadmin_path}
acepanel app remove phpmyadmin
systemctl reload nginx
echo -e $HR
echo "Uninstall successful"
echo -e $HR