mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-12 01:39:17 +05:00
9 lines
158 B
Plaintext
9 lines
158 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
ZAPRET=/etc/init.d/zapret
|
||
|
[ -x "$ZAPRET" ] && [ "$INTERFACE" = "lan" ] && {
|
||
|
[ "$ACTION" = "ifup" ] && {
|
||
|
$ZAPRET enabled && $ZAPRET restart
|
||
|
}
|
||
|
}
|