Update 4 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 1m1s

This commit is contained in:
j
2025-12-17 23:33:14 +13:00
parent 8194500a38
commit de6ad1db93
4 changed files with 33 additions and 17 deletions

View File

@@ -7,8 +7,8 @@ _check_required_env_vars "SERVER" "SERVICE" "GITEA_RUNNER_DIRECTORY" "CONTAINER_
_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"
_is_container_running "$CONTAINER_NAME" && _die "Couldn't stop existing container"
_is_container_exists "$CONTAINER_NAME" && _die "Couldn't remove existing container"
echo "Uninstallation of ${CONTAINER_NAME} complete."
echo "Local data folder ${GITEA_RUNNER_DIRECTORY} still in place."