]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/xinetd/manifests/init.pp
ordering fixups
[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                 noop    => true,
10                 require => Package['xinetd']
11         }
12 }