From 7e0bd6aea084f50f15039b3cd6273f1c707d6176 Mon Sep 17 00:00:00 2001 From: Timmo Date: Sun, 8 Sep 2019 19:14:48 +0100 Subject: [PATCH] :shirt: Fix shellcheck --- home-panel/rootfs/etc/cont-init.d/secrets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-panel/rootfs/etc/cont-init.d/secrets.sh b/home-panel/rootfs/etc/cont-init.d/secrets.sh index 82be728..2803b09 100644 --- a/home-panel/rootfs/etc/cont-init.d/secrets.sh +++ b/home-panel/rootfs/etc/cont-init.d/secrets.sh @@ -3,7 +3,7 @@ # Community Hass.io Add-ons: Home Panel # This updates the internal auth secret for the API # ============================================================================== -if [ "$(cat /opt/panel/config/default.json | grep -c 'API_AUTH_SECRET')" = 0 ]; then +if [ "$(grep -i 'API_AUTH_SECRET' /opt/panel/config/default.json)" = 0 ]; then bashio::log.info "Update auth secret.." sed -i -e "s/API_AUTH_SECRET/$(openssl rand -base64 32)/g" /opt/panel/config/default.json fi