Add script for checking upstream versions
This commit is contained in:
parent
be170d365b
commit
67d4a78976
10
update-check.sh
Executable file
10
update-check.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
function get_date {
|
||||
curl --silent --head https://geolite.maxmind.com/download/geoip/database/GeoLite2-$1.tar.gz | grep -Po "(?<=GeoLite2-${1}_)\d+(?=\.tar\.gz)"
|
||||
}
|
||||
|
||||
echo -e "Spec file version: $(rpmspec geolite2.spec --srpm --query --queryformat '%{VERSION}')"
|
||||
echo -e "City remote version: $(get_date City)"
|
||||
echo -e "Country remote version: $(get_date Country)"
|
||||
echo -e "ASN remote version: $(get_date ASN)"
|
Loading…
Reference in New Issue
Block a user