Remove NOPASSWD: from apt-in-chroot calls for porters, add porter-bsd access on falla...
[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 }