Fixes #30769 - nxos_vtp_version errors out on N1 images. (#30770)

* Fixes #30769

* add the same fix for 2 more vtp modules
This commit is contained in:
rahushen 2017-10-03 07:54:14 -04:00 committed by Trishna Guha
parent 17fbeeb2f0
commit a12a05c219
3 changed files with 21 additions and 12 deletions

View file

@ -149,11 +149,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():

View file

@ -180,11 +180,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():

View file

@ -147,11 +147,14 @@ def get_vtp_config(module):
def get_vtp_password(module):
command = 'show vtp password'
body = execute_show_command(command, module)[0]
try:
password = body['passwd']
if password:
return str(password)
else:
return ""
except TypeError:
return ""
def main():