添加若干功能

This commit is contained in:
2022-11-06 12:49:34 +08:00
parent d8a92fab02
commit 57f18f1a74
7 changed files with 326 additions and 22 deletions

View File

@@ -1,16 +1,27 @@
#!/bin/bash
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
echo "清理卸载残留"
for username in `ls /home`
CONTAINER_NAME="@deb_package_name@"
if [ -z $CONTAINER_NAME ];then
echo "W: 没有指定容器,跳过清理容器。请手动前往 ~/.deepinwine/ 下删除"
exit
fi
if [ -e /opt/deepinwine/tools/kill.sh ];then
/opt/deepinwine/tools/kill.sh $CONTAINER_NAME
###这里注意如果没写CONTAINER_NAME,会把QQ杀了
fi
for username in $(ls /home)
do
echo /home/$username
if [ -d "/home/$username/.deepinwine/@deb_package_name@" ]
then
rm -rf "/home/$username/.deepinwine/@deb_package_name@"
fi
echo /home/$username
if [ -d /home/$username/.deepinwine/$CONTAINER_NAME ]
then
rm -rf /home/$username/.deepinwine/$CONTAINER_NAME
fi
done
else
echo "非卸载,跳过清理"
echo "非卸载,跳过清理"
fi