mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
352 B
20 lines
352 B
#!/bin/sh
|
|
|
|
[ "$type" == "ip6tables" ] && exit 0
|
|
[ "$table" != "mangle" ] && exit 0
|
|
|
|
SCRIPT=$(readlink /opt/etc/init.d/S99zapret)
|
|
if [ -n "$SCRIPT" ]; then
|
|
EXEDIR=$(dirname "$SCRIPT")
|
|
ZAPRET_BASE=$(readlink -f "$EXEDIR/../..")
|
|
else
|
|
ZAPRET_BASE=/opt/zapret
|
|
fi
|
|
|
|
. "$EXEDIR/functions"
|
|
|
|
case $MODE in
|
|
nfqws|twps|custom)
|
|
zapret_apply_firewall
|
|
;;
|
|
esac
|
|
|