mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 20:46:41 +02:00
This is now required See: https://dev.maxmind.com/geoip/updating-databases#directly-downloading-databases Fixes: #15813 Suggested-By: C Wilson
10 lines
219 B
Bash
Executable file
10 lines
219 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ver_old="$2"
|
|
|
|
if [ "$(apk version -t "$ver_old" "1.9.1-r0")" = "<" ]; then
|
|
cat >&2 <<-"EOF"
|
|
The cron to update the geoip db now requires $MAXMINDDB_USER_ID to be
|
|
set in /etc/libmaxminddb.cron.conf
|
|
EOF
|
|
fi
|