def _prepare_trunk(self):
     print 'Configuring Trunk..'
     data1 = {
         'name': 'dahdi-g1',
         'interface': 'dahdi/g1'
     }
     trunkcustom_helper.add_or_replace_trunkcustom(data1)
Example #2
0
 def _prepare_trunk(self):
     print 'Configuring Trunk..'
     data1 = {'name': 'dahdi-g1', 'interface': 'dahdi/g1'}
     trunkcustom_helper.add_or_replace_trunkcustom(data1)
def given_there_is_a_trunkcustom(step, name):
    data = {'name': name,
            'interface': name}
    trunkcustom_helper.add_or_replace_trunkcustom(data)
def given_there_is_a_trunkcustom(step, name):
    data = {'name': name, 'interface': name}
    trunkcustom_helper.add_or_replace_trunkcustom(data)