We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After testing latest version of firewall module i've noticed that puppet applies catalog significantly longer compared to the previous version.
After a bit of strace it looks like new version makes several iptables-save calls every time it applies each rule.
iptables-save
Old version ~# grep -c "execve(\"/usr/sbin/iptables-save" strace1.out 60 New version ~# grep -c "execve(\"/usr/sbin/iptables-save" strace2.out 296
For some machines catalog application time increased more than 2x (from 50 to 120 seconds, for example).
Firewall resource should not make multiple iptables-save calls for each rule.
It is related to #1100
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
After testing latest version of firewall module i've noticed that puppet applies catalog significantly longer compared to the previous version.
After a bit of strace it looks like new version makes several
iptables-save
calls every time it applies each rule.For some machines catalog application time increased more than 2x (from 50 to 120 seconds, for example).
Expected Behavior
Firewall resource should not make multiple
iptables-save
calls for each rule.Environment
Additional Context
It is related to #1100
The text was updated successfully, but these errors were encountered: