(ipfw) fix queue rule..

This commit is contained in:
Ad Schellevis 2015-06-01 17:49:23 +02:00
parent da45bd68c2
commit 44f7060259

View File

@ -44,7 +44,9 @@ pipe {{ pipe.number }} config bw {{ pipe.bandwidth }}{{ pipe.bandwidthMetric }}/
#======================================================================================
{% if helpers.exists('OPNsense.TrafficShaper.queues.queue') %}
{% for queue in helpers.toList('OPNsense.TrafficShaper.queues.queue') %}
queue {{ queue.number }} config pipe {{ queue.pipe }} weight {{ queue.weight }}
{% if helpers.getUUIDtag(queue.pipe) in ['pipe'] %}
queue {{ queue.number }} config pipe {{ helpers.getUUID(queue.pipe).number }} weight {{ queue.weight }}
{% endif %}
{% endfor %}
{% endif %}