2.2 KiB
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
-
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.
- 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.
-
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.
- After running
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 thatgeoip_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.