fix 57447 bug (#57938)
Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com>
This commit is contained in:
parent
a82156a63f
commit
d63ccb5bc8
1 changed files with 9 additions and 0 deletions
|
@ -35,6 +35,15 @@ from ansible.plugins.cliconf import CliconfBase
|
||||||
|
|
||||||
class Cliconf(CliconfBase):
|
class Cliconf(CliconfBase):
|
||||||
|
|
||||||
|
def get_config(self, source='running', format='text', flags=None):
|
||||||
|
if source not in ('running'):
|
||||||
|
return self.invalid_params("fetching configuration from %s is not supported" % source)
|
||||||
|
cmd = 'show running-config'
|
||||||
|
return self.send_command(cmd)
|
||||||
|
|
||||||
|
def edit_config(self, command):
|
||||||
|
return
|
||||||
|
|
||||||
def get(self, command=None, prompt=None, answer=None, sendonly=False, output=None, newline=True, check_all=False):
|
def get(self, command=None, prompt=None, answer=None, sendonly=False, output=None, newline=True, check_all=False):
|
||||||
if not command:
|
if not command:
|
||||||
raise ValueError('must provide value of command to execute')
|
raise ValueError('must provide value of command to execute')
|
||||||
|
|
Loading…
Reference in a new issue