From 8f22cc19518694e65a0e27fe47bac2960b281a48 Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Wed, 19 Mar 2014 13:31:46 +0100 Subject: bridging: add possibility to set prio and ageing Conflicts: sysconfig/network-scripts/ifup-eth --- sysconfig/network-scripts/ifup-eth | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sysconfig/network-scripts/ifup-eth b/sysconfig/network-scripts/ifup-eth index 17846964..ed1a47a2 100755 --- a/sysconfig/network-scripts/ifup-eth +++ b/sysconfig/network-scripts/ifup-eth @@ -61,6 +61,8 @@ if [ "${TYPE}" = "Bridge" ]; then fi [ -n "${DELAY}" ] && /usr/sbin/brctl setfd ${DEVICE} ${DELAY} [ -n "${STP}" ] && /usr/sbin/brctl stp ${DEVICE} ${STP} + [ -n "${PRIO}" ] && /usr/sbin/brctl setbridgeprio ${DEVICE} ${PRIO} + [ -n "${AGEING}" ] && /usr/sbin/brctl setageing ${DEVICE} ${AGEING} # add the bits to setup driver parameters here for arg in $BRIDGING_OPTS ; do key=${arg%%=*}; -- cgit v1.2.1