Backport/2.7/48933 (#49400)

* comparing StorageConnection.password breaks idempotency (#48933)

(cherry picked from commit 5cd31578cc)

* changelog
pull/49535/head
John R Barker 6 years ago committed by Toshio Kuratomi
parent 12e088ff93
commit 69e1d0f425

@ -0,0 +1,2 @@
bugfixes:
- ovirt_storage_connection - comparing passwords breaks idempotency in update_check (https://github.com/ansible/ansible/issues/48933)

@ -176,7 +176,6 @@ class StorageConnectionModule(BaseModule):
equal(self.param('nfs_timeout'), entity.nfs_timeo) and equal(self.param('nfs_timeout'), entity.nfs_timeo) and
equal(self.param('nfs_retrans'), entity.nfs_retrans) and equal(self.param('nfs_retrans'), entity.nfs_retrans) and
equal(self.param('mount_options'), entity.mount_options) and equal(self.param('mount_options'), entity.mount_options) and
equal(self.param('password'), entity.password) and
equal(self.param('username'), entity.username) and equal(self.param('username'), entity.username) and
equal(self.param('port'), entity.port) and equal(self.param('port'), entity.port) and
equal(self.param('target'), entity.target) and equal(self.param('target'), entity.target) and

Loading…
Cancel
Save