diff options
Diffstat (limited to 'manifests/client.pp')
-rw-r--r-- | manifests/client.pp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/client.pp b/manifests/client.pp index c99cf27..84dd7ab 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -1,8 +1,9 @@ # manifests/client.pp class sshd::client( - $shared_ip = hiera('sshd_shared_ip','no'), - $ensure_version = hiera('sshd_ensure_version','installed') + $shared_ip = 'no', + $ensure_version = 'installed', + $manage_shorewall = false ) { case $::operatingsystem { @@ -15,7 +16,7 @@ class sshd::client( } } - if hiera('use_shorewall',false) { + if $manage_shorewall{ include shorewall::rules::out::ssh } } |