14 lines
372 B
Plaintext
14 lines
372 B
Plaintext
post_install() {
|
|
echo ':: By installing geoip-database-extra, you acknowledge and agree to comply'
|
|
echo ' with the terms of the GeoLite2 End User License Agreement (EULA).'
|
|
echo
|
|
echo ' Review the EULA here: https://www.maxmind.com/en/geolite2/eula'
|
|
}
|
|
|
|
post_upgrade() {
|
|
if (($(vercmp $2 20231213-1) < 0)); then
|
|
post_install
|
|
fi
|
|
}
|
|
# vim:set ts=2 sw=2 et:
|