Thomas Haller
Thomas Haller
When the role runs and configures the network, it determines success based on whether it was able to perform all requested configurations. But it would be useful, to extend this...
Commonly, the role will connect to the host via SSH. Hence, it cannot currently support to change the IP address of the host, because it will cut itself off. ansible...
The states `present` and `absent` are supposed to only deply/remove the persistant networking profiles on the host. They are not supposed to actually change the networking in any way. That...
The role aims to accept the desired networking configuration in a declarative way. The user doesn't say to issue a certain command or series of steps (like `nmcli`). Instead, the...
Ignoring errors seems not best. It can make it harder to find problems with the script. If a command in the script is known to fail for valid reasons, then...
Let `firewall-cmd` (without command arguments) show an overview of the current configuration. The fields that are shown are subject to change and improvement. Depending on what exactly is requested, this...
During nft command, we may (temporarily) create a lot of data to track the rules. This increases the memory usage, even if only for a short time. Rework some code,...
While `firewalld_conf` performs some input validation, it does not normalize the values. that means, the rest of the code might see booleans as "True", "no" or "fAlSe". `firewalld_conf` should perform...
Add a new key `"LogDeniedGroup"` key to `firewalld.conf`. If set, this is the NFLog group for the `"LogDenied"` messages. https://issues.redhat.com/browse/RHEL-5817 This branch is on top of #1290, and thus currently...