mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
Fix idempotency for environment (#260)
This commit is contained in:
parent
6f7c1f340f
commit
b3cf53e5ac
1 changed files with 1 additions and 1 deletions
|
|
@ -808,7 +808,7 @@ class PodmanContainerDiff:
|
|||
for i in env_before}
|
||||
after = before.copy()
|
||||
if self.params['env']:
|
||||
after.update(self.params['env'])
|
||||
after.update({k: str(v) for k, v in self.params['env'].items()})
|
||||
return self._diff_update_and_compare('env', before, after)
|
||||
|
||||
def diffparam_etc_hosts(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue