Update eos clcionf plugin (#43809)

* If the remote host supports session
  capability set the `supports_generate_diff`
  flag to false which identifies if config diff should
  be generated within module or not
This commit is contained in:
Ganesh Nalawade 2018-08-08 15:11:25 +05:30 committed by GitHub
parent 6dce96e1d0
commit 4618583f2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -275,7 +275,7 @@ class Cliconf(CliconfBase):
'supports_multiline_delimiter': False,
'supports_diff_match': True,
'supports_diff_ignore_lines': True,
'supports_generate_diff': True,
'supports_generate_diff': False if self.supports_sessions else True,
'supports_replace': True if self.supports_sessions else False
}