]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/xinetd/manifests/init.pp
521cd4bfd74d7f18d9635a795ef3859f808ac9cd
[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         }
11 }