]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/xinetd/manifests/init.pp
79e23590d87b6eee9e7b524e767a92627d7fd649
[dsa-puppet.git] / modules / xinetd / manifests / init.pp
1 class xinetd {
2         package { 'xinetd':
3                 ensure => installed,
4                 noop   => true,
5         }
6
7         service { 'xinetd':
8                 ensure    => running,
9                 hasstatus => false,
10                 pattern   => '/usr/sbin/xinetd',
11                 noop      => true,
12                 require   => Package['xinetd']
13         }
14 }