diff options
| author | Stijn Tintel | 2022-01-07 08:45:50 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2022-01-09 13:22:05 +0000 |
| commit | 21f311d93a68b4c095c0162b4be20ce4b4c2540b (patch) | |
| tree | 8f7aa16abc63a3ba7b454999e9959a27f7adf5da | |
| parent | 9a509d49b5925a27e54402cf16246881931b72c6 (diff) | |
| download | firewall4-21f311d93a68b4c095c0162b4be20ce4b4c2540b.tar.gz | |
ruleset.uc: don't trim newline before comment sign
When flow offloading is enabled, the comment block is inserted in the
ruleset like this:
table inet fw4 { #
# Flowtable
#
This is due to the trimming of newlines which was done to avoid having
to modify all the test files. A better solution is to just add an extra
newline in the template.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Reviewed-by: Jo-Philipp Wich <jo@mein.io>
| -rw-r--r-- | root/usr/share/firewall4/templates/ruleset.uc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/root/usr/share/firewall4/templates/ruleset.uc b/root/usr/share/firewall4/templates/ruleset.uc index bb79205..56d18ec 100644 --- a/root/usr/share/firewall4/templates/ruleset.uc +++ b/root/usr/share/firewall4/templates/ruleset.uc @@ -2,7 +2,7 @@ table inet fw4 flush table inet fw4 table inet fw4 { -{%- if (fw4.default_option("flow_offloading") && length(devices) > 0): %} +{% if (fw4.default_option("flow_offloading") && length(devices) > 0): %} # # Flowtable # @@ -16,7 +16,6 @@ table inet fw4 { } {% endif %} - # # Set definitions # |