zapret/ipset/get_reestr_resolvable_domains.sh

34 lines
685 B
Bash
Raw Normal View History

#!/bin/sh
IPSET_DIR="$(dirname "$0")"
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
. "$IPSET_DIR/def.sh"
TMPLIST="$TMPDIR/list_nethub.txt"
URL="http://list.nethub.fi/reestr_hostname_resolvable.txt"
dl()
{
# $1 - url
# $2 - file
curl -H "Accept-Encoding: gzip" -k --fail --max-time 180 --connect-timeout 10 --retry 4 --max-filesize 33554432 "$1" | gunzip - >"$TMPLIST" ||
{
echo list download failed : $1
exit 2
}
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ')
if test $dlsize -lt 65536; then
echo list is too small : $dlsize bytes. can be bad.
exit 2
fi
zz "$2" <"$TMPLIST"
rm -f "$TMPLIST"
}
dl "$URL" "$ZHOSTLIST"
hup_zapret_daemons
exit 0