1
0
mirror of https://git.burble.com/burble.dn42/lgregmapper.git synced 2024-05-12 03:55:05 +00:00
Files

17 lines
548 B
Bash
Raw Permalink Normal View History

2019-09-13 22:29:04 +01:00
#!/bin/bash
##########################################################################
LGREGMAPPER_API=${LGREGMAPPER_WEBAPP:-https://explorer.burble.dn42/}
LGREGMAPPER_BIND=${LGREGMAPPER_BIND:-localhost:11211}
LGREGMAPPER_INTERVAL=${LGREGMAPPER_INTERVAL:-10m}
LGREGMAPPER_LOGLVL=${LGREGMAPPER_LOGLVL:-info}
exec /app/lgregmapper \
-a "$LGREGMAPPER_API" \
-b "$LGREGMAPPER_BIND" \
-i "$LGREGMAPPER_INTERVAL" \
-l "$LGREGMAPPER_LOGLVL" \
##########################################################################
# end of file