Richard Megginson

Results 313 comments of Richard Megginson

by "Ansible Automation Hub" do you mean https://console.redhat.com/ansible/automation-hub ? If so, then the collection there should have no dependencies. if by "Ansible Automation Hub" you mean https://galaxy.ansible.com/ui/repo/published/fedora/linux_system_roles/ then yes, this...

Also, please attach the output of `ansible-galaxy collection install -vv fedora.linux_system_roles` - I just tried this on a blank centos-9 system and this is what I see: ``` # ansible-galaxy...

> the wildcard dependency on fedora.linux_system_roles is pulling in EVERY version of the collections listed Can you show me the output of `ansible-galaxy collection install fedora.linux_system_roles` that shows it downloading...

> Since replacing previous rules causes firewalld restart it is not suitable for most production environments. In case not replacing previous rules the defined configuration may not be what is...

It seems to me that this is what check mode is intended for. Does the firewall role check mode not work for this situation? Or is it that the output...

When using `previous: replaced` - should it show you all of the settings that were erased/reverted to the default value? If so, how? > In cases where the configuration represented...

@juliaschindler Thanks for the info. Can you provide an example of how you would like the differences to be reported?

Thanks. Not sure when we can get someone to work on this, but this is helpful.

> **What would you like to be added**: I could'nt come up with an easy solution for dynamically overwrite or not overwrite the whole firewall config depending on a boolean....

Ok - I think you want something like this? Inventory: ```yaml firewall: - overwrite_config: "{{ false if is_production_environment else true }}" - ports: ..... ``` does this work? ```yaml firewall:...