diff --git a/home-panel/rootfs/etc/cont-init.d/secrets.sh b/home-panel/rootfs/etc/cont-init.d/secrets.sh index 5b7039c..8cb39f6 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" -eq 0 ]; then +if [ $(cat /opt/panel/config/default.json | grep -c "API_AUTH_SECRET") = 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