qosmngr:Updated script to handle default value of QoS.Classification.{i}.VLANIDCheck

This commit is contained in:
sandeep 2022-03-22 13:07:45 +05:30 committed by Rahul
parent ce077af70f
commit cbf545ac16

View file

@ -337,6 +337,11 @@ broute_filter_on_dscp() {
}
broute_filter_on_vid() {
if [ $1 -lt 0 ]; then
return
fi
case "$BR_RULE" in
*proto*)
BR_RULE="$BR_RULE --vlan-id $1"