packages/net/nft-qos/files/nft-qos-monitor.hotplug
Rosy Song 6a42b7bf38 nft-qos: fix monitor doesn't work when firstboot
Signed-off-by: Rosy Song <rosysong@rosinson.com>
2019-01-02 09:20:36 +08:00

21 lines
410 B
Bash

#!/bin/sh
#
# Copyright 2018 rosysong@rosinson.com
#
. /lib/nft-qos/monitor.sh
logger -t nft-qos-monitor "ACTION=$ACTION, MACADDR=$MACADDR, IPADDR=$IPADDR, HOSTNAME=$HOSTNAME"
case "$ACTION" in
add | update)
qosdef_init_env
qosdef_init_monitor
qosdef_monitor_add $MACADDR $IPADDR $HOSTNAME
;;
remove)
qosdef_init_env
qosdef_init_monitor
qosdef_monitor_del $MACADDR $IPADDR $HOSTNAME
;;
esac