diff options
author | mh <mh@immerda.ch> | 2009-12-10 23:45:12 +0100 |
---|---|---|
committer | mh <mh@immerda.ch> | 2009-12-10 23:45:12 +0100 |
commit | 5bdeab5848f975317a215fd40574f8edd568480a (patch) | |
tree | e5da7e9061b203eb5c11111b927f50f3214a86e2 /manifests/client.pp | |
parent | 217a4e25666e1fe2684872aa3f3a9868ffcf7141 (diff) | |
download | puppet-sshd-5bdeab5848f975317a215fd40574f8edd568480a.tar.gz puppet-sshd-5bdeab5848f975317a215fd40574f8edd568480a.tar.bz2 |
re-add shorewall in rule :/
Diffstat (limited to 'manifests/client.pp')
-rw-r--r-- | manifests/client.pp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/manifests/client.pp b/manifests/client.pp index 2fc3a84..b650244 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -1,16 +1,16 @@ # manifests/client.pp class sshd::client { - case $operatingsystem { - debian: { include sshd::client::debian } - default: { - case $kernel { - linux: { include sshd::client::linux } - default: { include sshd::client::base } - } - } - } - if $use_shorewall{ - include shorewall::rules::out::ssh + case $operatingsystem { + debian: { include sshd::client::debian } + default: { + case $kernel { + linux: { include sshd::client::linux } + default: { include sshd::client::base } + } } + } + if $use_shorewall{ + include shorewall::rules::out::ssh + } } |