Skip to content
Snippets Groups Projects
Commit 37e50a67 authored by Elena Grandi's avatar Elena Grandi
Browse files

After saving a comment line stop parsing

parent fc13c37e
No related branches found
Tags fuss/12.0.15-1
No related merge requests found
Pipeline #1990 passed with stage
in 46 seconds
octofussd (12.0.15-1) unstable; urgency=medium
* Fix parsing firewall configuration files.
-- Elena Grandi <valhalla@debian.org> Wed, 05 Mar 2025 11:21:18 +0100
octofussd (12.0.14-1) unstable; urgency=medium
* Preserve header comments in the firewall configuration files.
......
......@@ -97,6 +97,7 @@ class FirewallConfFile(octofuss.Tree):
for line in f:
if line.startswith("#"):
self.header_comments.append(line)
continue
r = line.strip().split(":")
if len(r) == 1:
host = r[0]
......
......@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name='octofussd',
version='12.0.14',
version='12.0.15',
description='octofuss server daemon',
author='FUSS Team',
author_email='packages@fuss.bz.it',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment