removed service load methids, since they are no longer used, added way for custom service load code to facilitate the unique docker service case

This commit is contained in:
Blake J. Harnden 2017-08-07 16:40:39 -07:00
parent 73eea80f51
commit f3863ead73
11 changed files with 26 additions and 117 deletions

View file

@ -4,7 +4,6 @@ xorp.py: defines routing services provided by the XORP routing suite.
from core import logger
from core.service import CoreService
from core.service import ServiceManager
class XorpRtrmgr(CoreService):
@ -468,15 +467,3 @@ class XorpOlsr(XorpService):
cfg += " }\n"
cfg += "}\n"
return cfg
def load_services():
ServiceManager.add(XorpRtrmgr)
ServiceManager.add(XorpOspfv2)
ServiceManager.add(XorpOspfv3)
ServiceManager.add(XorpBgp)
ServiceManager.add(XorpRip)
ServiceManager.add(XorpRipng)
ServiceManager.add(XorpPimSm4)
ServiceManager.add(XorpPimSm6)
ServiceManager.add(XorpOlsr)