From f4247eaa07cd0456432c74c209cb6494eaec58e3 Mon Sep 17 00:00:00 2001 From: Fredrik Wikestad Date: Fri, 9 Feb 2024 14:44:23 +0100 Subject: [PATCH] Spelling error --- server/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/start.sh b/server/start.sh index 3e19e52..59ceab3 100755 --- a/server/start.sh +++ b/server/start.sh @@ -1,9 +1,9 @@ #!/bin/bash -FILE=/run/secrets/STORAGE_CONTAINER_STRING +FILE=/run/secrets/STORAGE_CONNECTION_STRING if [ -f $FILE ]; then export STORAGE_CONNECTION_STRING=$(cat /run/secrets/STORAGE_CONNECTION_STRING) -fi +fi # we need to figure out the IP of the public interface here IP=`ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1`