blob: 8c58ca85ff20fd22f033ede456fa28d9bc84d2ac (
plain)
1
2
3
4
5
6
|
class sshd::client::linux inherits sshd::client::base {
if $ssh_ensure_version == '' { $ssh_ensure_version = 'installed' }
package {'openssh-clients':
ensure => $ssh_ensure_version,
}
}
|