adds get_block_config() method to NetworkConfig
new method that will return the config block string for the specified config path
This commit is contained in:
parent
0a0013e1eb
commit
a3cc24efb2
1 changed files with 4 additions and 0 deletions
|
@ -224,6 +224,10 @@ class NetworkConfig(object):
|
||||||
raise ValueError('path does not exist in config')
|
raise ValueError('path does not exist in config')
|
||||||
return self._expand_block(obj)
|
return self._expand_block(obj)
|
||||||
|
|
||||||
|
def get_block_config(self, path):
|
||||||
|
block = self.get_block(path)
|
||||||
|
return dumps(block, 'config')
|
||||||
|
|
||||||
def _expand_block(self, configobj, S=None):
|
def _expand_block(self, configobj, S=None):
|
||||||
if S is None:
|
if S is None:
|
||||||
S = list()
|
S = list()
|
||||||
|
|
Loading…
Reference in a new issue