Add script for checking upstream versions

This commit is contained in:
Carl George 2019-08-13 14:33:52 -05:00
parent be170d365b
commit 67d4a78976

10
update-check.sh Executable file
View 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)"