From e826f7dc7b888f27cbf3ff019294aa30d4bf557f Mon Sep 17 00:00:00 2001 From: Magnus Toneby <magnus.toneby@liu.se> Date: Wed, 28 Feb 2024 09:34:24 +0100 Subject: [PATCH] fix pdk warnings --- manifests/init.pp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index a6aa89c..4bb8365 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -6,39 +6,39 @@ # @example # none class vlc { - firewalld_service {'Allow http in the liu Zone': + firewalld_service { 'Allow http in the liu Zone': ensure => present, zone => 'liu', service => 'http', } - firewalld_service {'Allow https in the liu Zone': + firewalld_service { 'Allow https in the liu Zone': ensure => present, zone => 'liu', service => 'https', } - firewalld_service {'Allow http in the public Zone': + firewalld_service { 'Allow http in the public Zone': ensure => present, zone => 'public', service => 'http', } - firewalld_service {'Allow https in the public Zone': + firewalld_service { 'Allow https in the public Zone': ensure => present, zone => 'public', service => 'https', } # Känner firewall till servicen syncthing ?? - firewalld_service {'Allow syncthing in the liu Zone': + firewalld_service { 'Allow syncthing in the liu Zone': ensure => present, zone => 'public', service => 'syncthing', } - firewalld_service {'Allow syncthing in the liu Zone': + firewalld_service { 'Allow syncthing in the liu Zone': ensure => present, zone => 'liu', service => 'syncthing', } - firewalld_service {'Allow syncthing-gui in the liu Zone': + firewalld_service { 'Allow syncthing-gui in the liu Zone': ensure => present, zone => 'liu', service => 'syncthing-gui', -- GitLab