Add user guide for 'vppcfg dump' command

This commit is contained in:
Pim van Pelt
2022-04-03 13:01:31 +00:00
parent eee47c02b1
commit dfd8c8b8a9
3 changed files with 12 additions and 2 deletions

3
vppcfg
View File

@ -65,6 +65,9 @@ def main():
if args.command=="dump":
d = VPPApiDumper()
if not d.readconfig():
logging.error("Could not retrieve config from VPP")
sys.exit(-7)
d.dump()
sys.exit(0)