2022-03-17 16:13:21 +05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
IPSET_DIR="$(dirname "$0")"
|
|
|
|
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
|
|
|
|
|
|
|
|
. "$IPSET_DIR/def.sh"
|
|
|
|
|
|
|
|
# useful in case ipban set is used in custom scripts
|
|
|
|
FAIL=
|
2022-06-18 17:43:15 +05:00
|
|
|
getipban || FAIL=1
|
2022-03-17 16:13:21 +05:00
|
|
|
"$IPSET_DIR/create_ipset.sh"
|
|
|
|
[ -n "$FAIL" ] && exit
|
|
|
|
|
|
|
|
ZURL=https://antizapret.prostovpn.org/domains-export.txt
|
|
|
|
ZDOM="$TMPDIR/zapret.txt"
|
|
|
|
|
|
|
|
|
2022-03-19 14:44:47 +05:00
|
|
|
curl -H "Accept-Encoding: gzip" -k --fail --max-time 600 --connect-timeout 5 --retry 3 --max-filesize 251658240 "$ZURL" | gunzip - >"$ZDOM" ||
|
2022-03-17 16:13:21 +05:00
|
|
|
{
|
|
|
|
echo domain list download failed
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
|
|
|
dlsize=$(LANG=C wc -c "$ZDOM" | xargs | cut -f 1 -d ' ')
|
|
|
|
if test $dlsize -lt 102400; then
|
|
|
|
echo list file is too small. can be bad.
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2022-07-27 18:35:05 +05:00
|
|
|
sort -u "$ZDOM" | zz "$ZHOSTLIST"
|
2022-03-17 16:13:21 +05:00
|
|
|
|
|
|
|
rm -f "$ZDOM"
|
|
|
|
|
|
|
|
hup_zapret_daemons
|
|
|
|
|
|
|
|
exit 0
|