This commit is contained in:
2023-07-19 17:36:02 +08:00
parent 55e6e4909a
commit 363f45d6cd
10 changed files with 403 additions and 0 deletions

10
src/DEBIAN/postrm Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ "$1" = "remove" ] || [ "$1" = "purge" ];then
echo "清理卸载残留"
rm -rf /opt/apps/store.spark-app.bookworm-compatibility-mode/
else
echo "非卸载,跳过清理"
fi