Go to file
2024-02-06 08:59:14 +03:30
.github/workflows Add github actions for testing setup.sh 2024-02-06 08:48:00 +03:30
.gitignore Initial commit 2024-02-06 06:36:23 +03:30
geoip_updater.sh Remove ensure_symlink_exists when file already exists 2024-02-06 08:40:05 +03:30
README.md Update README.md 2024-02-06 08:59:14 +03:30
setup.sh Update setup.sh to schedule geoip_updater for past two days and today 5 minutes apart 2024-02-06 08:40:38 +03:30

GeoIP Database Updater Script

This script, automates the process of checking for new releases of GeoIP databases on GitHub, downloading them if they're not already present, and updating the local database files for use.

Prerequisites

Before proceeding, ensure that wget and curl are installed on your system, as they are required for the script to download files and check URLs.

Setup Instructions

Using setup.sh Script

  1. Execute setup.sh as Normal User:

    • Run the setup script as a normal user without sudo privileges to perform operations like creating directories, changing permissions, and editing the crontab. It will ask you for the password when needed.
      ./setup.sh
      
    • This approach ensures that the crontab entries are added to the current user's crontab, not the root's crontab.
  2. Verify Crontab Entry:

    • After running setup.sh, verify that the crontab entries have been added correctly by listing the current user's crontab:
      crontab -l
      
    • You should see three new entries for running geoip_updater.sh with specific dates.

Manual Execution

After setup, the geoip_updater.sh script will run automatically according to the schedule set in the crontab. However, you can also run the script manually at any time by executing:

/usr/local/bin/geoip_updater.sh

Optionally, you can specify a date as an argument to manually check and download the database for a specific date:

/usr/local/bin/geoip_updater.sh YYYY-MM-DD

Troubleshooting

  • If the script does not run as scheduled, ensure that the crontab entries are set correctly and that geoip_updater.sh is executable.
  • Check the log file /var/log/geoip_update.log for any errors or messages output by the script.

Acknowledgements

I would like to extend my sincere gratitude to ChatGPT for providing extensive help in writing, checking, and documenting this project. The guidance and support received were invaluable in ensuring the quality and reliability of the scripts and documentation. Thank you for being an integral part of this project's development.