module-sshd/manifests/client/linux.pp

7 lines
196 B
ObjectPascal
Raw Normal View History

2009-09-29 19:53:04 +02:00
class sshd::client::linux inherits sshd::client::base {
if $ssh_ensure_version == '' { $ssh_ensure_version = 'installed' }
package {'openssh-clients':
ensure => $ssh_ensure_version,
}
2009-09-29 19:53:04 +02:00
}