Skip to content

Commit

Permalink
Update geoipupdate to 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
boutetnico committed Nov 19, 2024
1 parent af4ab3f commit e32c756
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ Role Variables
| Variable | Required | Default | Choices | Comments |
|---------------------------------|----------|-------------------------------------|-----------|-----------------------------|
| geoipupdate_dependencies | yes | `[cron]` | list | |
| geoipupdate_version | yes | `7.0.1` | string | |
| geoipupdate_version | yes | `7.1.0` | string | |
| geoipupdate_arch | yes | detected automatically | string | |
| geoipupdate_path | yes | `/usr/local/bin/geoipupdate` | string | |
| geoipupdate_config_file | yes | `/usr/local/etc/GeoIP.conf` | string | |
| geoipupdate_account_id | yes | `0` | string | |
| geoipupdate_license_key | yes | `000000000000` | string | |
| geoipupdate_edition_ids | yes | `[GeoLite2-Country, GeoLite2-City]` | list | Databases to install. |
| geoipupdate_database_directory | yes | `/usr/local/share/GeoIP` | string | |
| geoipupdate_host | yes | `updates.maxmind.com` | string | |
| geoipupdate_host | yes | `https://updates.maxmind.com` | string | |
| geoipupdate_proxy | no | | string | |
| geoipupdate_proxy_user_password | no | | string | |
| geoipupdate_preserve_file_times | yes | `0` | int | |
Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
geoipupdate_version: 7.0.1
geoipupdate_version: 7.1.0

geoipupdate_arch: "{{ geoipupdate_arch_map[ansible_architecture] }}"

Expand All @@ -16,7 +16,7 @@ geoipupdate_edition_ids:

geoipupdate_database_directory: /usr/local/share/GeoIP

geoipupdate_host: updates.maxmind.com
geoipupdate_host: https://updates.maxmind.com

# geoipupdate_proxy: 127.0.0.1:8888
# geoipupdate_proxy_user_password: username:password
Expand Down
8 changes: 4 additions & 4 deletions templates/GeoIP.conf.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Please see https://dev.maxmind.com/geoip/geoipupdate/ for instructions
# on setting up geoipupdate, including information on how to download a
# pre-filled GeoIP.conf file.
# Please see https://dev.maxmind.com/geoip/updating-databases?lang=en for
# instructions on setting up geoipupdate, including information on how to
# download a pre-filled GeoIP.conf file.

# Replace YOUR_ACCOUNT_ID_HERE and YOUR_LICENSE_KEY_HERE with an active account
# ID and license key combination associated with your MaxMind account. These
Expand All @@ -17,7 +17,7 @@ EditionIDs {{ geoipupdate_edition_ids | join(' ') }}
# The directory to store the database files. Defaults to DATADIR
DatabaseDirectory {{ geoipupdate_database_directory }}

# The server to use. Defaults to "updates.maxmind.com".
# The server to use. Defaults to "https://updates.maxmind.com".
Host {{ geoipupdate_host }}

# The proxy host name or IP address. You may optionally specify a
Expand Down

0 comments on commit e32c756

Please sign in to comment.