package script

This commit is contained in:
rustdesk
2022-04-18 15:37:35 +08:00
parent bbdf3fc9a3
commit 4e2a44e392
6 changed files with 164 additions and 0 deletions

11
DEBIAN/postrm Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
set -e
case $1 in
purge)
rm -rf /root/.config/rustdesk || true
;;
esac
exit 0