2023.11.01

This commit is contained in:
spiritlhl 2023-11-01 02:29:04 +00:00
parent 43d789513a
commit ff3e7e6bf6

View File

@ -6,7 +6,6 @@
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
AEGIS_INSTALL_DIR="/usr/local/aegis" AEGIS_INSTALL_DIR="/usr/local/aegis"
AEGIS_SYSTEMD_SERVICE_PATH="/etc/systemd/system/aegis.service"
#check linux Gentoo os #check linux Gentoo os
var=`lsb_release -a | grep Gentoo` var=`lsb_release -a | grep Gentoo`
if [ -z "${var}" ]; then if [ -z "${var}" ]; then
@ -201,9 +200,10 @@ check_root() {
remove_aegis() { remove_aegis() {
if [ -d $AEGIS_INSTALL_DIR ]; then if [ -d $AEGIS_INSTALL_DIR ]; then
systemctl stop aegis.service systemctl stop aegis.service 2>/dev/null
systemctl disable aegis.service systemctl disable aegis.service 2>/dev/null
umount $AEGIS_INSTALL_DIR/aegis_debug rm -rf "/etc/systemd/system/aegis.service"
umount "$AEGIS_INSTALL_DIR/aegis_debug"
rm -rf $AEGIS_INSTALL_DIR/* >/dev/null 2>&1 rm -rf $AEGIS_INSTALL_DIR/* >/dev/null 2>&1
rm -rf /usr/local/share/assist-daemon/* >/dev/null 2>&1 rm -rf /usr/local/share/assist-daemon/* >/dev/null 2>&1
rm -rf /usr/local/share/aliyun* >/dev/null 2>&1 rm -rf /usr/local/share/aliyun* >/dev/null 2>&1