Assert that all PHYs in the config also exist in VPP

This commit is contained in:
Pim van Pelt
2022-03-24 12:29:16 +00:00
parent 8129235031
commit e8e41098be
3 changed files with 23 additions and 1 deletions

View File

@ -142,3 +142,7 @@ class Validator(object):
self.logger.info("Configuration validated successfully")
return True
def get_phys(self, yaml):
""" Return all PHYs in the config """
return interface.get_phys(yaml)