Files
mxautologin/scripts/uninstall.sh
T
2026-06-30 11:31:19 +02:00

12 lines
247 B
Bash
Executable File

#!/bin/sh
set -eu
BASE_DIR="/usr/local/hitme_plugins/mail-login"
if [ "${PURGE_MAIL_LOGIN_DATA:-0}" = "1" ]; then
rm -rf "$BASE_DIR"
echo "mail-login data purged"
else
echo "mail-login uninstalled; external data preserved at $BASE_DIR"
fi