diff options
author | mh <mh@immerda.ch> | 2015-11-28 17:41:51 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2015-12-05 11:36:31 +0100 |
commit | 6bca4007a104cc7f1736613679b171f19a706685 (patch) | |
tree | d6a923dd8aaeed28210272c1895d9f23d8b250d3 | |
parent | 77ef3216c06b3c501dd63a8df9a7e5561ffc7992 (diff) | |
download | puppet-shorewall-6bca4007a104cc7f1736613679b171f19a706685.tar.gz puppet-shorewall-6bca4007a104cc7f1736613679b171f19a706685.tar.bz2 |
linting for future parser
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 27f9c4c..d6b2d2a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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 } } |