Skip to content

Commit bc838d7

Browse files
authored
fix: ansible.posix is not a required collection for the podman driver (#337)
`ansible.posix` is not a required collection for the podman driver
1 parent 8d37bb9 commit bc838d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/molecule_plugins/podman/driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def sanity_checks(self):
243243
@property
244244
def required_collections(self) -> dict[str, str]:
245245
"""Return collections dict containing names and versions required."""
246-
return {"containers.podman": "1.7.0", "ansible.posix": "1.3.0"}
246+
return {"containers.podman": "1.7.0"}
247247

248248
def reset(self):
249249
# edge case: podman not installed, but the plugin exists and is properly initialized

0 commit comments

Comments
 (0)