mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-26 12:10:53 +03:00
26 lines
444 B
Plaintext
26 lines
444 B
Plaintext
# this custom script applies nfqws mode as it would be with MODE=nfqws
|
|
|
|
OVERRIDE=nfqws
|
|
|
|
zapret_custom_daemons()
|
|
{
|
|
# $1 - 1 - run, 0 - stop
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_do_daemons $1
|
|
}
|
|
zapret_custom_firewall()
|
|
{
|
|
# $1 - 1 - run, 0 - stop
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_do_firewall_rules_ipt $1
|
|
}
|
|
zapret_custom_firewall_nft()
|
|
{
|
|
# stop logic is not required
|
|
|
|
local MODE_OVERRIDE=$OVERRIDE
|
|
zapret_apply_firewall_rules_nft
|
|
}
|