diff --git a/plinth/modules/firewall/__init__.py b/plinth/modules/firewall/__init__.py index df49e8876..3cd45ea7c 100644 --- a/plinth/modules/firewall/__init__.py +++ b/plinth/modules/firewall/__init__.py @@ -87,9 +87,9 @@ class FirewallApp(app_module.App): if 'firewalld' not in packages: return False - # Allow upgrade from any version to any version below 2.0 + # Allow upgrade from any version to any version below 3.0 package = packages['firewalld'] - if Version(package['new_version']) > Version('2~'): + if Version(package['new_version']) > Version('3~'): return False install(['firewalld'], force_configuration='new')