bugfix in nxos shared module for including defaults
This commit is contained in:
parent
a758806287
commit
4d3aa72143
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ class NxosModule(AnsibleModule):
|
||||||
|
|
||||||
def get_config(self):
|
def get_config(self):
|
||||||
cmd = 'show running-config'
|
cmd = 'show running-config'
|
||||||
if self.params['include_defaults']:
|
if self.params.get('include_defaults'):
|
||||||
cmd += ' all'
|
cmd += ' all'
|
||||||
if self.params['transport'] == 'cli':
|
if self.params['transport'] == 'cli':
|
||||||
return self.execute(cmd)[0]
|
return self.execute(cmd)[0]
|
||||||
|
|
Loading…
Reference in a new issue