roll up of updates to vyos shared module
* cleans up method signature * removes save_config method in favor of super classpull/4420/head
parent
f5cff2ced5
commit
75f1573ed5
|
@ -96,15 +96,13 @@ class Cli(CliBase):
|
|||
|
||||
return diff
|
||||
|
||||
def get_config(self, output='config'):
|
||||
if output not in ['config', 'set']:
|
||||
def get_config(self, output='text'):
|
||||
if output not in ['text', 'set']:
|
||||
raise ValueError('invalid output format specified')
|
||||
if output == 'set':
|
||||
return self.execute(['show configuration commands'])[0]
|
||||
else:
|
||||
return self.execute(['show configuration'])[0]
|
||||
|
||||
def save_config(self):
|
||||
raise NotImplementedError
|
||||
|
||||
Cli = register_transport('cli', default=True)(Cli)
|
||||
|
|
Loading…
Reference in New Issue