smeserver-xt_geoip/source/root/etc/e-smith/events/actions/smeserver-xt_geoip-download-action

15 lines
270 B
Plaintext
Raw Normal View History

2023-02-06 20:04:43 +01:00
#!/bin/bash
cd /usr/share/xt_geoip
if [ -f ./LE/A1.iv4 ]
then
FILES=$(find ./LE -name A1.iv4 -type f -mtime +7)
if [ -z $FILES ]
then
echo "recent base, no download"
exit 0
fi
fi
echo "download base for xt_geoip"
./update_base > /dev/null 2>&1
exit 0