aboutsummaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-07-29 19:31:41 +0200
committermh <mh@immerda.ch>2011-07-29 19:31:41 +0200
commitcb7cd9e314fad2cf8eb8d2c524e17a1c3e3e94d2 (patch)
tree35ebac01729e545fae37083e5051f18aaa6c214b /manifests/client.pp
parent7a44f28880a57814c26ed06c7d066c11a605cc70 (diff)
parent0e9e1b6f2c5dca80c946f7944d47f1d28ba76920 (diff)
downloadpuppet-sshd-cb7cd9e314fad2cf8eb8d2c524e17a1c3e3e94d2.tar.gz
puppet-sshd-cb7cd9e314fad2cf8eb8d2c524e17a1c3e3e94d2.tar.bz2
Merge remote-tracking branch 'shared/master'
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 31785e9..5eed5fc 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,16 +1,23 @@
# manifests/client.pp
class sshd::client {
+
+ case $sshd_shared_ip {
+ '': { $sshd_shared_ip = "no" }
+ }
+
case $operatingsystem {
debian,ubuntu: { include sshd::client::debian }
default: {
case $kernel {
linux: { include sshd::client::linux }
- default: { include sshd::client::base }
+ default: { include sshd::client::base }
}
}
}
+
if $use_shorewall{
include shorewall::rules::out::ssh
}
+
}