From: G. Paul Ziemba Date: Thu, 1 Mar 2018 05:44:49 +0000 (-0800) Subject: ltemplate.py: start isisd when isisd.conf present X-Git-Tag: frr-7.1-dev~151^2~98 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=7fdc42389ab92f2be7bf054e62620dae25459428;p=mirror%2Ffrr.git ltemplate.py: start isisd when isisd.conf present Signed-off-by: G. Paul Ziemba --- diff --git a/tests/topotests/lib/ltemplate.py b/tests/topotests/lib/ltemplate.py index 62e11e810e..9c511f7bc7 100644 --- a/tests/topotests/lib/ltemplate.py +++ b/tests/topotests/lib/ltemplate.py @@ -93,6 +93,9 @@ class LTemplate(): config = os.path.join(self.testdir, '{}/bgpd.conf'.format(rname)) if os.path.exists(config): router.load_config(TopoRouter.RD_BGP, config) + config = os.path.join(self.testdir, '{}/isisd.conf'.format(rname)) + if os.path.exists(config): + router.load_config(TopoRouter.RD_ISIS, config) # After loading the configurations, this function loads configured daemons. logger.info('Starting routers')