mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-15 18:41:37 +01:00
This is now required See: https://dev.maxmind.com/geoip/updating-databases#directly-downloading-databases Fixes: #15813 Suggested-By: C Wilson
11 lines
219 B
Bash
Executable File
11 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
|