11 lines
364 B
Bash
Executable File
11 lines
364 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# GeoIP2 data created by MaxMind: https://www.maxmind.com . Requires license key.
|
|
# Updated twice weekly, every Tuesday and Friday.
|
|
# Each account (license key) is limited to 2000 total direct downloads in a 24 hour period.
|
|
|
|
VAR_D="/usr/local/psa/var/modules/firewall/geoip/`basename "$0"`.d"
|
|
EDITION_TYPE="GeoIP2"
|
|
|
|
. "`dirname "$0"`/maxmind-lite"
|