Nuke!
This commit is contained in:
@ -18,7 +18,7 @@ install_prerequisites() {
|
||||
# - wget
|
||||
# - docker
|
||||
|
||||
PREREQUISITES=("bash" "curl" "wget" "docker")
|
||||
PREREQUISITES=("bash" "curl" "wget" "jq" "docker")
|
||||
|
||||
# check if all prerequisites are installed
|
||||
for prerequisite in "${PREREQUISITES[@]}"; do
|
||||
|
6
templates/dropshell-agent/nuke.sh
Normal file
6
templates/dropshell-agent/nuke.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# NUKE SCRIPT
|
||||
# run after uninstall.sh to delete all data.
|
||||
|
||||
|
14
templates/example-nginx/nuke.sh
Normal file
14
templates/example-nginx/nuke.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# NUKE SCRIPT
|
||||
# This is run after the uninstall.sh script to delete all data.
|
||||
# dropshell handles the configuration files, so we just need to remove
|
||||
# any docker volumes and any custom local data folders.
|
||||
|
||||
source "$(dirname "$0")/_common.sh"
|
||||
check_required_env_vars "LOCAL_DATA_FOLDER" "CONTAINER_NAME"
|
||||
|
||||
# remove the local data folder
|
||||
rm -rf $LOCAL_DATA_FOLDER || die "Failed to remove local data folder ${LOCAL_DATA_FOLDER}"
|
||||
|
||||
echo "Nuking of ${CONTAINER_NAME} complete."
|
@ -6,7 +6,7 @@
|
||||
# It is called with the path to the server specific env file as an argument.
|
||||
|
||||
source "$(dirname "$0")/_common.sh"
|
||||
check_required_env_vars "CONTAINER_NAME" "IMAGE_REGISTRY" "IMAGE_REPO" "IMAGE_TAG"
|
||||
check_required_env_vars "CONTAINER_NAME" "IMAGE_REGISTRY" "IMAGE_REPO" "IMAGE_TAG" "LOCAL_DATA_FOLDER"
|
||||
|
||||
_remove_container $CONTAINER_NAME || die "Failed to remove container ${CONTAINER_NAME}"
|
||||
_is_container_running && die "Couldn't stop existing container"
|
||||
|
12
templates/simple-object-storage/nuke.sh
Normal file
12
templates/simple-object-storage/nuke.sh
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
# NUKE SCRIPT
|
||||
# Gets run after uninstall.sh
|
||||
|
||||
source "$(dirname "$0")/_common.sh"
|
||||
check_required_env_vars "CONTAINER_NAME" "VOLUME_NAME"
|
||||
|
||||
docker volume rm $VOLUME_NAME || die "Failed to remove volume ${VOLUME_NAME}"
|
||||
|
||||
echo "Nuking of ${CONTAINER_NAME} complete."
|
||||
|
Reference in New Issue
Block a user