This commit is contained in:
Your Name
2025-05-05 19:27:17 +12:00
parent 0462748336
commit 7c9a45edf5
2 changed files with 11 additions and 3 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
source "${AGENT_PATH}/_common.sh"
_check_required_env_vars "LOCAL_DATA_FOLDER"
# remove the local data folder
if [ -d "${LOCAL_DATA_FOLDER}" ]; then
rm -rf ${LOCAL_DATA_FOLDER}
fi
echo "Nuke of ${CONTAINER_NAME} complete"