11 lines
287 B
Bash
Executable File
11 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
BASE_DIR="/usr/local/hitme_plugins/global-autoresponders"
|
|
if [ "${PURGE_GLOBAL_AUTORESPONDER_DATA:-0}" = "1" ]; then
|
|
rm -rf "$BASE_DIR"
|
|
echo "global-autoresponder data purged"
|
|
else
|
|
echo "global-autoresponder uninstalled; external data preserved at $BASE_DIR"
|
|
fi
|