From c7e39d61646bdee0928ac6a0c040ae7d5bd1e6c1 Mon Sep 17 00:00:00 2001 From: Kevin Baensch Date: Fri, 6 Jan 2023 08:34:35 +0100 Subject: [PATCH] Templater variables do not need to be overridable. --- script/hostman.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/script/hostman.sh b/script/hostman.sh index 1cd5f37..971f593 100755 --- a/script/hostman.sh +++ b/script/hostman.sh @@ -3,8 +3,9 @@ # Configurable Variables DOCKER_SOCK_PATH="${DOCKER_SOCK_PATH:-/tmp/docker.sock}" NETWORK_NAME="${NETWORK_NAME:-proxy}" -TEMPLATER_PATH="${TEMPLATER_PATH:-/docker-templater.sh}" -TEMPLATE_FOLDER_PATH="${TEMPLATE_FOLDER_PATH:-/templates}" +# Path to Docker Templater and Templates +TEMPLATER_PATH="/docker-templater.sh" +TEMPLATE_FOLDER_PATH="/templates" get_date() { printf '%s' "$(date +'%Y.%m.%d_%H:%M:%S')"