biiig wrench
This commit is contained in:
@ -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"
|
||||
|
@ -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
|
||||
|
@ -1,6 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
source "$AGENT_PATH/_common.sh"
|
||||
source "${AGENT_PATH}/_common.sh"
|
||||
check_required_env_vars "CONTAINER_NAME"
|
||||
|
||||
# Main script.
|
||||
|
@ -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.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
source "$AGENT_PATH/_common.sh"
|
||||
source "${AGENT_PATH}/_common.sh"
|
||||
|
||||
|
||||
echo 80
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
source "$AGENT_PATH/_common.sh"
|
||||
source "${AGENT_PATH}/_common.sh"
|
||||
|
||||
# RESTORE SCRIPT
|
||||
|
||||
|
@ -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.
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
source "$AGENT_PATH/_common.sh"
|
||||
source "${AGENT_PATH}/_common.sh"
|
||||
|
||||
# STATUS SCRIPT
|
||||
# The status script is OPTIONAL.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
Reference in New Issue
Block a user