module-sshd/manifests/linux.pp

9 lines
159 B
ObjectPascal
Raw Normal View History

2009-09-29 19:53:04 +02:00
class sshd::linux inherits sshd::base {
package{openssh:
ensure => $sshd_ensure_version,
}
File[sshd_config]{
require +> Package[openssh],
2009-09-29 19:53:04 +02:00
}
}