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