summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 0d1d198..5eed5fc 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,6 +1,11 @@
# manifests/client.pp
class sshd::client {
+
+ case $sshd_shared_ip {
+ '': { $sshd_shared_ip = "no" }
+ }
+
case $operatingsystem {
debian,ubuntu: { include sshd::client::debian }
default: {
@@ -10,7 +15,9 @@ class sshd::client {
}
}
}
+
if $use_shorewall{
include shorewall::rules::out::ssh
}
+
}