1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

addons: vrf: Correcting 'vrf-table' usage example

Ticket: CM-11041
Reviewed By: Roopa Prabhu
Testing Done: yes, all ifupdown2 commands for a vrf deive

<DETAILED DESCRIPTION (REPLACE)>

Signed-off-by: Nikhil <nikhil@cumulusnetworks.com>
This commit is contained in:
Nikhil
2016-05-18 16:33:08 -07:00
parent 4e07a2d530
commit fffec8bbab

View File

@@ -27,9 +27,11 @@ class vrf(moduleBase):
_modinfo = { 'mhelp' : 'vrf configuration module',
'attrs' : {
'vrf-table':
{'help' : 'vrf device table id. key to ' +
'creating a vrf device',
'example': ['vrf-table-id 1']},
{'help' : 'vrf device routing table id. key to ' +
'creating a vrf device. ' +
'Table id is either \'auto\' or '+
'\'valid routing table id\'',
'example': ['vrf-table auto', 'vrf-table 1001']},
'vrf':
{'help' : 'vrf the interface is part of.',
'example': ['vrf blue']}}}