module-sshd/manifests/debian.pp

14 lines
220 B
ObjectPascal
Raw Normal View History

2009-09-29 19:53:04 +02:00
class sshd::debian inherits sshd::linux {
2009-10-30 22:07:23 +01:00
Package[openssh]{
name => 'openssh-server',
}
2009-10-30 22:07:23 +01:00
Service[sshd]{
2013-02-03 00:30:54 +01:00
name => 'ssh',
pattern => 'sshd',
hasstatus => true,
hasrestart => true,
2009-10-30 22:07:23 +01:00
}
2009-09-29 19:53:04 +02:00
}