diff --git a/galaxy.yml b/galaxy.yml index 4532991..a9710de 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -8,7 +8,7 @@ namespace: jchristianh name: baseos # The version of the collection. Must be compatible with semantic versioning -version: 1.0.14 +version: 1.0.15 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/etc_hosts/tasks/main.yml b/roles/etc_hosts/tasks/main.yml index daeed59..b74f3c2 100644 --- a/roles/etc_hosts/tasks/main.yml +++ b/roles/etc_hosts/tasks/main.yml @@ -3,7 +3,9 @@ set_fact: __etc_hosts_file: "{{ __etc_hosts_file }}.docker" when: - - ansible_virtualization_type == "docker" + - ansible_virtualization_type == "docker" or + ansible_virtualization_type == "podman" or + ansible_virtualization_type == "container" - name: Deploy {{ __etc_hosts_file }}