#!/bin/bash

if [ -z $IFACE ] ; then
    exit 0
fi

if [ -r /etc/default/qos ] ; then
    . /etc/default/qos
fi

if [ "$ENABLE_QOS" != "auto" ] ; then	
    exit 0
fi

/usr/sbin/setup-qos start $IFACE || exit 0
