mirror of https://github.com/bol-van/zapret/
3 changed files with 85 additions and 2 deletions
@ -0,0 +1,42 @@ |
|||||
|
#!/bin/sh |
||||
|
|
||||
|
IPSET_DIR="$(dirname "$0")" |
||||
|
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)" |
||||
|
|
||||
|
. "$IPSET_DIR/def.sh" |
||||
|
|
||||
|
TMPLIST="$TMPDIR/list.txt" |
||||
|
|
||||
|
URL="https://github.com/1andrevich/Re-filter-lists/releases/latest/download/domains_all.lst" |
||||
|
|
||||
|
dl() |
||||
|
{ |
||||
|
# $1 - url |
||||
|
# $2 - file |
||||
|
# $3 - minsize |
||||
|
# $4 - maxsize |
||||
|
curl -L -H "Accept-Encoding: gzip" -k --fail --max-time 60 --connect-timeout 10 --retry 4 --max-filesize $4 -o "$TMPLIST" "$1" || |
||||
|
{ |
||||
|
echo list download failed : $1 |
||||
|
exit 2 |
||||
|
} |
||||
|
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ') |
||||
|
if test $dlsize -lt $3; then |
||||
|
echo list is too small : $dlsize bytes. can be bad. |
||||
|
exit 2 |
||||
|
fi |
||||
|
zzcat "$TMPLIST" | tr -d '\015' | zz "$2" |
||||
|
rm -f "$TMPLIST" |
||||
|
} |
||||
|
|
||||
|
# useful in case ipban set is used in custom scripts |
||||
|
FAIL= |
||||
|
getipban || FAIL=1 |
||||
|
"$IPSET_DIR/create_ipset.sh" |
||||
|
[ -n "$FAIL" ] && exit |
||||
|
|
||||
|
dl "$URL" "$ZHOSTLIST" 32768 4194304 |
||||
|
|
||||
|
hup_zapret_daemons |
||||
|
|
||||
|
exit 0 |
@ -0,0 +1,39 @@ |
|||||
|
#!/bin/sh |
||||
|
|
||||
|
IPSET_DIR="$(dirname "$0")" |
||||
|
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)" |
||||
|
|
||||
|
. "$IPSET_DIR/def.sh" |
||||
|
|
||||
|
TMPLIST="$TMPDIR/list.txt" |
||||
|
|
||||
|
URL="https://github.com/1andrevich/Re-filter-lists/releases/latest/download/ipsum.lst" |
||||
|
|
||||
|
dl() |
||||
|
{ |
||||
|
# $1 - url |
||||
|
# $2 - file |
||||
|
# $3 - minsize |
||||
|
# $4 - maxsize |
||||
|
curl -L -H "Accept-Encoding: gzip" -k --fail --max-time 60 --connect-timeout 10 --retry 4 --max-filesize $4 -o "$TMPLIST" "$1" || |
||||
|
{ |
||||
|
echo list download failed : $1 |
||||
|
exit 2 |
||||
|
} |
||||
|
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ') |
||||
|
if test $dlsize -lt $3; then |
||||
|
echo list is too small : $dlsize bytes. can be bad. |
||||
|
exit 2 |
||||
|
fi |
||||
|
# remove DOS EOL \r |
||||
|
zzcat "$TMPLIST" | tr -d '\015' | zz "$2" |
||||
|
rm -f "$TMPLIST" |
||||
|
} |
||||
|
|
||||
|
getuser && { |
||||
|
[ "$DISABLE_IPV4" != "1" ] && { |
||||
|
dl "$URL" "$ZIPLIST" 32768 4194304 |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
"$IPSET_DIR/create_ipset.sh" |
Loading…
Reference in new issue