biiig wrench

This commit is contained in:
Your Name
2025-05-03 22:58:39 +12:00
parent 107034cf7b
commit 340170b248
51 changed files with 347 additions and 395 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
check_required_env_vars "CONTAINER_NAME" "DATA_VOLUME" "CONFIG_VOLUME" "CONFIG_PATH"
_stop_container "$CONTAINER_NAME"

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
check_required_env_vars "CONTAINER_NAME" "IMAGE_REGISTRY" "IMAGE_REPO" "IMAGE_TAG" "DATA_VOLUME" "CONFIG_VOLUME"
if ! autocreate volume=$DATA_VOLUME volume=$CONFIG_VOLUME; then

View File

@ -1,6 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
check_required_env_vars "CONTAINER_NAME"
# Main script.

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# NUKE SCRIPT
# This is run after the uninstall.sh script to delete all data.

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
echo 80

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# RESTORE SCRIPT

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# START SCRIPT
# The start script is required for all templates.

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# STATUS SCRIPT
# The status script is OPTIONAL.

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# STOP SCRIPT
# The stop script is required for all templates.

View File

@ -1,5 +1,5 @@
#!/bin/bash
source "$AGENT_PATH/_common.sh"
source "${AGENT_PATH}/_common.sh"
# UNINSTALL SCRIPT
# The uninstall script is required for all templates.