module-sshd/manifests/linux.pp

9 lines
162 B
ObjectPascal
Raw Normal View History

2009-09-29 19:53:04 +02:00
class sshd::linux inherits sshd::base {
2013-02-03 00:30:54 +01:00
package{'openssh':
2012-06-05 23:23:03 +02:00
ensure => $sshd::ensure_version,
}
File[sshd_config]{
require +> Package[openssh],
2009-09-29 19:53:04 +02:00
}
}