mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 03:44:31 +04:00
8 lines
106 B
Bash
8 lines
106 B
Bash
#!/bin/sh
|
|
|
|
[ "$ACTION" == "ifup" ] || exit 0
|
|
|
|
[ "$INTERFACE" = "wan" ] && {
|
|
/etc/init.d/chilli restart
|
|
}
|