about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-10-21 11:04:31 +0200
committerEmile <hanemile@protonmail.com>2019-10-21 11:04:31 +0200
commitdb965dd9ccb30eaa8b21524811dc76aba70180e9 (patch)
tree92b2f560de9971d77a4ebe63dea7e0fada88f73c
parent3f50e9d526c5fc67706e816f40687220fb14a126 (diff)
fixed the traefik user
-rwxr-xr-xsetup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index 812e694..1f604e5 100755
--- a/setup.sh
+++ b/setup.sh
@@ -30,7 +30,7 @@ read -e -p "Traefik password: " -i "secret" TRAEFIK_PASSWORD
 TRAEFIK_CREDS=$(htpasswd -nb $TRAEFIK_USER $TRAEFIK_PASSWORD)
 
 # Write the creds to the traefik users file
-echo TRAEFIK_CREDS >> traefik_users
+echo "$TRAEFIK_CREDS" >> traefik_users
 
 # Grafana settings
 read -e -p "Grafana server: " -i "https://grafana.$HOSTNAME:3000" GF_SERVER_ROOT_URL