summaryrefslogtreecommitdiff
path: root/manifests/client/linux.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client/linux.pp')
-rw-r--r--manifests/client/linux.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/client/linux.pp b/manifests/client/linux.pp
new file mode 100644
index 0000000..8c58ca8
--- /dev/null
+++ b/manifests/client/linux.pp
@@ -0,0 +1,6 @@
+class sshd::client::linux inherits sshd::client::base {
+ if $ssh_ensure_version == '' { $ssh_ensure_version = 'installed' }
+ package {'openssh-clients':
+ ensure => $ssh_ensure_version,
+ }
+}