'Generic Commit'

This commit is contained in:
Your Name
2025-06-01 17:37:45 +12:00
parent fcee3fd99d
commit ffd61cd754
11 changed files with 142 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
set -euo pipefail
# shellcheck disable=SC1091
source "${AGENT_PATH}/common.sh"
_check_required_env_vars "SERVER" "SERVICE" "GITEA_RUNNER_DIRECTORY" "CONTAINER_NAME"
_remove_container "$CONTAINER_NAME" || _die "Failed to remove container ${CONTAINER_NAME}"
_is_container_running && _die "Couldn't stop existing container"
_is_container_exists && _die "Couldn't remove existing container"
echo "Uninstallation of ${CONTAINER_NAME} complete."
echo "Local data folder ${GITEA_RUNNER_DIRECTORY} still in place."