]> gitweb.fluxo.info Git - puppet-shorewall.git/commitdiff
linting for future parser
authormh <mh@immerda.ch>
Sat, 28 Nov 2015 16:41:51 +0000 (17:41 +0100)
committermh <mh@immerda.ch>
Sat, 5 Dec 2015 10:36:31 +0000 (11:36 +0100)
manifests/init.pp

index 27f9c4c2a45249108d54be8f3018810bb96648ac..d6b2d2a4a9b0f6d633c9c698a1cecc6b0bd43047 100644 (file)
@@ -49,12 +49,12 @@ class shorewall(
 ) {
 
   case $::operatingsystem {
-    gentoo: { include shorewall::gentoo }
-    debian,ubuntu: { include shorewall::debian }
-    centos: { include shorewall::centos }
+    'Gentoo': { include ::shorewall::gentoo }
+    'Debian','Ubuntu': { include ::shorewall::debian }
+    'CentOS': { include ::shorewall::centos }
     default: {
       notice "unknown operatingsystem: ${::operatingsystem}"
-      include shorewall::base
+      include ::shorewall::base
     }
   }