| 123456789101112 | #!/bin/bash# get wekan/mongo settingssource $SNAP/bin/wekan-read-settingsif [ "$CADDY_ENABLED" = "true" ]; then    env LC_ALL=C caddy -conf=$SNAP_COMMON/Caddyfile -host=localhost:${CADDY_PORT} -agreeelse    echo "caddy is disabled. Stop service"    snapctl stop --disable ${SNAP_NAME}.caddy    # sleep here, in case snapctl fails to stop service so we do not restart too oftenfi
 |