mirror of
https://github.com/bol-van/zapret.git
synced 2025-04-19 05:22:58 +03:00
7 lines
130 B
Bash
7 lines
130 B
Bash
#!/bin/sh
|
|
|
|
ZAPRET=/etc/init.d/zapret
|
|
[ -x "$ZAPRET" ] && [ "$INTERFACE" = "lan" ] && {
|
|
[ "$ACTION" = "ifup" ] && $ZAPRET start
|
|
}
|