mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
8 lines
143 B
Bash
Executable file
8 lines
143 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /lib/network/utils.sh
|
|
|
|
if [ "$LINK" = "up" ]; then
|
|
logger -t qos "reload qos due to link up on $PORT"
|
|
/etc/init.d/qos reload
|
|
fi
|