drop a bunch of noops
[mirror/dsa-puppet.git] / modules / xinetd / manifests / init.pp
1 class xinetd {
2         package { 'xinetd':
3                 ensure => installed,
4         }
5
6         service { 'xinetd':
7                 ensure    => running,
8                 hasstatus => false,
9                 pattern   => '/usr/sbin/xinetd',
10                 require   => Package['xinetd']
11         }
12 }