Files
syncthing/script/strelaypoolsrv-entrypoint.sh
T

11 lines
226 B
Bash
Raw Normal View History

2023-01-23 08:38:55 +01:00
#!/bin/sh
set -eu
if [ "$MAXMIND_KEY" != "" ] ; then
curl "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=${MAXMIND_KEY}&suffix=tar.gz" \
| tar --strip-components 1 -zxv
fi
exec "$@"