diff options
Diffstat (limited to 'manifests/client/linux.pp')
-rw-r--r-- | manifests/client/linux.pp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/client/linux.pp b/manifests/client/linux.pp index 522fa50..8c58ca8 100644 --- a/manifests/client/linux.pp +++ b/manifests/client/linux.pp @@ -1,5 +1,6 @@ class sshd::client::linux inherits sshd::client::base { - package {'openssh-clients': - ensure => installed, - } + if $ssh_ensure_version == '' { $ssh_ensure_version = 'installed' } + package {'openssh-clients': + ensure => $ssh_ensure_version, + } } |