From 0e50723e8363d3988f88b8b6c36fecf08ce2a894 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 16 Sep 2023 13:57:21 +0200 Subject: [PATCH] Fix issues with firewall control implementation --- personal_infra/puppet/site/01-tinc.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/personal_infra/puppet/site/01-tinc.pp b/personal_infra/puppet/site/01-tinc.pp index 7228a87..a883e89 100644 --- a/personal_infra/puppet/site/01-tinc.pp +++ b/personal_infra/puppet/site/01-tinc.pp @@ -22,6 +22,6 @@ if 'tinc' in lookup("group_names") { tinc_ip => lookup("network.self_internal_ip"), tinc_netmask => lookup("network.self_internal_netmask"), tinc_other_networks => $tinc_other_networks, - firewall => !lookup("network.disable_firewall"), + firewall => !lookup({"name" => "network.disable_firewall", "default_value" => false}), } } -- 2.47.3